ObjectDB Database Search
101-150 of 200 resultsAttribute.isCollection() - JPA Method JPA Method in javax.persistence.metamodel.Attribute boolean isCollection () Is the attribute collection-valued (represents a Collection, Set, List, or Map). Return: boolean indicating whether the attribute is collection-valued Since: JPA 2.0 | |
IdentifiableType | |
IdentifiableType | |
SingularAttribute.isId() - JPA Method JPA Method in javax.persistence.metamodel.SingularAttribute boolean isId () Is the attribute an id attribute. This method will return true if the attribute is an attribute that corresponds to a simple id, an embedded id, or an attribute of an id class. Return: boolean indicating whether the attribute is an id Since: JPA 2.0 | |
SingularAttribute.isVersion() - JPA Method JPA Method in javax.persistence.metamodel.SingularAttribute boolean isVersion () Is the attribute a version attribute. Return: boolean indicating whether the attribute is a version attribute Since: JPA 2.0 | |
SingularAttribute.isOptional() - JPA Method JPA Method in javax.persistence.metamodel.SingularAttribute boolean isOptional () Can the attribute be null. Return: boolean indicating whether the attribute can be null Since: JPA 2.0 | |
javax.persistence.Basic . Since: JPA 1.0 boolean optional default true (Optional) Defines whether the value of the field or property | |
javax.persistence.Basic.optional JPA Annotation Attribute in javax.persistence.Basic boolean optional default true (Optional) Defines whether the value of the field or property may be null. This is a hint and is disregarded for primitive types; it may be used in schema generation. If not specified, defaults to true . Since: JPA 1.0 | |
javax.persistence.Cacheable article explains how to use Cacheable . Public Annotation Attributes boolean value default true | |
javax.persistence.Cacheable.value JPA Annotation Attribute in javax.persistence.Cacheable boolean value default true (Optional) Whether or not the entity should be cached. Since: JPA 2.0 | |
javax.persistence.Column.unique JPA Annotation Attribute in javax.persistence.Column boolean unique default false (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column | |
javax.persistence.Column.nullable JPA Annotation Attribute in javax.persistence.Column boolean nullable default true (Optional) Whether the database column is nullable. Since: JPA 1.0 | |
javax.persistence.Column.insertable JPA Annotation Attribute in javax.persistence.Column boolean insertable default true (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Since: JPA 1.0 | |
javax.persistence.Column.updatable JPA Annotation Attribute in javax.persistence.Column boolean updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 1.0 | |
javax.persistence.Convert.disableConversion JPA Annotation Attribute in javax.persistence.Convert boolean disableConversion default false Used to disable an auto-apply or inherited converter. If disableConversion is true, the converter element should not be specified. Since: JPA 2.1 | |
javax.persistence.Converter. See Also: AttributeConverter Convert Since: JPA 2.1 Public Annotation Attributes boolean autoApply default false Since: JPA 2.1 | |
javax.persistence.Converter.autoApply JPA Annotation Attribute in javax.persistence.Converter boolean autoApply default false Since: JPA 2.1 | |
EntityManager.isOpen() - JPA Method JPA Method in javax.persistence.EntityManager boolean isOpen () Determine whether the entity manager is open. Return: true until the entity manager has been closed Since: JPA 1.0 | |
javax.persistence.Index 2.1 boolean unique default false (Optional) Whether the index is unique. Since: JPA 2.1 | |
javax.persistence.Index.unique JPA Annotation Attribute in javax.persistence.Index boolean unique default false (Optional) Whether the index is unique. Since: JPA 2.1 | |
javax.persistence.JoinColumn.unique JPA Annotation Attribute in javax.persistence.JoinColumn boolean unique default false (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. It is not | |
javax.persistence.JoinColumn.nullable JPA Annotation Attribute in javax.persistence.JoinColumn boolean nullable default true (Optional) Whether the foreign key column is nullable. Since: JPA 1.0 | |
javax.persistence.JoinColumn.insertable JPA Annotation Attribute in javax.persistence.JoinColumn boolean insertable default true (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Since: JPA 1.0 | |
javax.persistence.JoinColumn.updatable JPA Annotation Attribute in javax.persistence.JoinColumn boolean updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 1.0 | |
javax.persistence.ManyToOne is a hint to the persistence provider runtime. Since: JPA 1.0 boolean optional default true | |
javax.persistence.ManyToOne.optional JPA Annotation Attribute in javax.persistence.ManyToOne boolean optional default true (Optional) Whether the association is optional. If set to false then a non-null relationship must always exist. Since: JPA 1.0 | |
javax.persistence.MapKeyColumn.unique JPA Annotation Attribute in javax.persistence.MapKeyColumn boolean unique default false (Optional) Whether the column is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint corresponds to only a single column | |
javax.persistence.MapKeyColumn.nullable JPA Annotation Attribute in javax.persistence.MapKeyColumn boolean nullable default false (Optional) Whether the database column is nullable. Since: JPA 2.0 | |
javax.persistence.MapKeyColumn.insertable JPA Annotation Attribute in javax.persistence.MapKeyColumn boolean insertable default true (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Since: JPA 2.0 | |
javax.persistence.MapKeyColumn.updatable JPA Annotation Attribute in javax.persistence.MapKeyColumn boolean updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 2.0 | |
javax.persistence.MapKeyJoinColumn.unique JPA Annotation Attribute in javax.persistence.MapKeyJoinColumn boolean unique default false (Optional) Whether the property is a unique key. This is a shortcut for the UniqueConstraint annotation at the table level and is useful for when the unique key constraint is only a single field. Since: JPA 2.0 | |
javax.persistence.MapKeyJoinColumn.nullable JPA Annotation Attribute in javax.persistence.MapKeyJoinColumn boolean nullable default false (Optional) Whether the foreign key column is nullable. Since: JPA 2.0 | |
javax.persistence.MapKeyJoinColumn.insertable JPA Annotation Attribute in javax.persistence.MapKeyJoinColumn boolean insertable default true (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Since: JPA 2.0 | |
javax.persistence.MapKeyJoinColumn.updatable JPA Annotation Attribute in javax.persistence.MapKeyJoinColumn boolean updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 2.0 | |
javax.persistence.NamedEntityGraph that are included in this graph. Since: JPA 2.1 boolean includeAllAttributes default false (Optional | |
javax.persistence.NamedEntityGraph.includeAllAttributes JPA Annotation Attribute in javax.persistence.NamedEntityGraph boolean includeAllAttributes default false (Optional) Includes all of the attributes of the annotated entity class as attribute nodes in the NamedEntityGraph without the need to explicitly list them. Included attributes | |
javax.persistence.OneToMany the relationship is unidirectional. Since: JPA 1.0 boolean orphanRemoval default false (Optional | |
javax.persistence.OneToMany.orphanRemoval JPA Annotation Attribute in javax.persistence.OneToMany boolean orphanRemoval default false (Optional) Whether to apply the remove operation to entities that have been removed from the relationship and to cascade the remove operation to those entities. Since: JPA 2.0 | |
javax.persistence.OneToOne.optional JPA Annotation Attribute in javax.persistence.OneToOne boolean optional default true (Optional) Whether the association is optional. If set to false then a non-null relationship must always exist. Since: JPA 1.0 | |
javax.persistence.OneToOne.orphanRemoval JPA Annotation Attribute in javax.persistence.OneToOne boolean orphanRemoval default false (Optional) Whether to apply the remove operation to entities that have been removed from the relationship and to cascade the remove operation to those entities. Since: JPA 2.0 | |
javax.persistence.OrderColumn.nullable JPA Annotation Attribute in javax.persistence.OrderColumn boolean nullable default true (Optional) Whether the database column is nullable. Since: JPA 2.0 | |
javax.persistence.OrderColumn.insertable JPA Annotation Attribute in javax.persistence.OrderColumn boolean insertable default true (Optional) Whether the column is included in SQL INSERT statements generated by the persistence provider. Since: JPA 2.0 | |
javax.persistence.OrderColumn.updatable JPA Annotation Attribute in javax.persistence.OrderColumn boolean updatable default true (Optional) Whether the column is included in SQL UPDATE statements generated by the persistence provider. Since: JPA 2.0 | |
PersistenceUnitUtil.isLoaded(entity,attributeName) - JPA Method JPA Method in javax.persistence.PersistenceUnitUtil boolean isLoaded ( Object entity, String attributeName ) Determine the load state of a given persistent attribute of an entity belonging to the persistence unit. Parameters: entity - entity instance | |
PersistenceUnitUtil.isLoaded(entity) - JPA Method JPA Method in javax.persistence.PersistenceUnitUtil boolean isLoaded ( Object entity ) Determine the load state of an entity belonging to the persistence unit. This method can be used to determine the load state of an entity passed as a reference. An entity is considered loaded | |
PersistenceUtil.isLoaded(entity,attributeName) - JPA Method JPA Method in javax.persistence.PersistenceUtil boolean isLoaded ( Object entity, String attributeName ) Determine the load state of a given persistent attribute. Parameters: entity - entity containing the attribute attributeName - name of attribute | |
Query.setOrdering(ordering) - JDO Method with a field in the candidate class. Valid field types are primitive types except boolean ; wrapper types except Boolean ; BigDecimal ; BigInteger ; String ; and Date . Parameters: ordering - the ordering specification. Since: JDO 1.0 | |
javax.jdo.spi.JDOImplHelper$StateInterrogationBooleanReturn JDO Interface StateInterrogationBooleanReturn This is an interface used to interrogate the state of an instance that does not implement PersistenceCapable. It is used for the methods that return a boolean value. Since: JDO 1.0 Public Methods Boolean is (Object pc, StateInterrogation | |
StateManager.getBooleanField(pc,field,currentValue) - JDO Method JDO Method in javax.jdo.spi.StateManager boolean getBooleanField ( PersistenceCapable pc, int field, boolean currentValue ) Return the value for the field. Parameters: pc - the calling PersistenceCapable instance field - the field | |
StateManager.setBooleanField(pc,field,currentValue,newValue) - JDO Method JDO Method in javax.jdo.spi.StateManager void setBooleanField ( PersistenceCapable pc, int field, boolean currentValue, boolean newValue ) Mark the field as modified by the user. Parameters: pc - the calling |