Internal Website Search
101-150 of 200 resultsjavax.jdo.annotations.Persistent.cacheable JDO Annotation Attribute in javax.jdo. annotations .Persistent String cacheable default "true" Whether this field/property is cacheable in a Level2 cache. Since: JDO 2.2 | |
javax.jdo.annotations.Persistent.extensions JDO Annotation Attribute in javax.jdo. annotations .Persistent Extension [] extensions default {} Vendor extensions for this member. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.column JDO Annotation Attribute in javax.jdo. annotations .Persistent String column default "" Column name where the values are stored for this member. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.columns JDO Annotation Attribute in javax.jdo. annotations .Persistent Column [] columns default {} Column definition(s) for this member. Used for mapping multiple columns to the same member, for example relationships with multiple column foreign keys. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.name JDO Annotation Attribute in javax.jdo. annotations .Persistent String name default "" Name of the member when this is embedded in another object. The fully-qualified member name is used. For example, "line.point1.x" refers to the member x in class Point that is embedded as member point1 in class | |
javax.jdo.annotations.Persistent.nullIndicatorColumn JDO Annotation Attribute in javax.jdo. annotations .Persistent String nullIndicatorColumn default "" Null indicator column for this member. Used for nested embedded fields or properties to indicate whether the embedded instance should have a null value. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.loadFetchGroup JDO Annotation Attribute in javax.jdo. annotations .Persistent String loadFetchGroup default "" Name of the fetch-group to use when this member is loaded due to being referenced when not already loaded. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.sequence JDO Annotation Attribute in javax.jdo. annotations .Persistent String sequence default "" Name of the sequence to use with particular value strategies. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.mappedBy JDO Annotation Attribute in javax.jdo. annotations .Persistent String mappedBy default "" Name of the related member in the other class where this value is mapped (bidirectional relationship). Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.types JDO Annotation Attribute in javax.jdo. annotations .Persistent Class[] types default {} Types of the member. Used when the declared member type is a supertype of the actual type that is stored in the member. For example, the declared member type might be an interface type that must contain an object of a concrete type when used for persistence. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.table JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String table default "" Table to use for persisting this class or interface. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.schema JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String schema default "" Schema to use for persisting this class or interface. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.catalog JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String catalog default "" Catalog to use for persisting this class or interface. Since: JDO 2.1 | |
javax.jdo.annotations.Order.columns JDO Annotation Attribute in javax.jdo. annotations .Order Column [] columns default {} The definition of the column(s) to use for ordering. Since: JDO 2.1 | |
javax.jdo.annotations.Order.mappedBy JDO Annotation Attribute in javax.jdo. annotations .Order String mappedBy default "" Name of a field or property in the target class that acts as the ordering field or property for this member. Return the name of the field or property in the target class Since: JDO 2.1 | |
javax.jdo.annotations.Order.column JDO Annotation Attribute in javax.jdo. annotations .Order String column default "" The name of the column to use for ordering the elements of the member. Since: JDO 2.1 | |
javax.jdo.annotations.Key.extensions JDO Annotation Attribute in javax.jdo. annotations .Key Extension [] extensions default {} Vendor extensions. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.defaultFetchGroup JDO Annotation Attribute in javax.jdo. annotations .Persistent String defaultFetchGroup default "" Whether this member is in the default fetch group. Since: JDO 2.1 | |
javax.jdo.annotations.Persistent.table JDO Annotation Attribute in javax.jdo. annotations .Persistent String table default "" Table to use for persisting this member. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.cacheable JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String cacheable default "true" Whether this class is cacheable in a Level2 cache. Since: JDO 2.2 | |
javax.jdo.annotations.PersistenceCapable.objectIdClass JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable Class objectIdClass default void.class Primary key class when using application identity and using own PK. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.extensions JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable Extension [] extensions default {} Any vendor extensions. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.embeddedOnly JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String embeddedOnly default "" Whether objects of this class or interface can only be embedded. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.requiresExtent JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String requiresExtent default "" Whether this class or interface manages an extent. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.identityType JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable IdentityType identityType default IdentityType.UNSPECIFIED Type of identity for this class or interface. Since: JDO 2.1 | |
javax.jdo.annotations.PersistenceCapable.detachable JDO Annotation Attribute in javax.jdo. annotations .PersistenceCapable String detachable default "" Whether this class or interface is detachable. Since: JDO 2.1 | |
javax.jdo.annotations.Joins.value JDO Annotation Attribute in javax.jdo. annotations .Joins Join [] value default null The join definitions used for the mapping of this type. Joins for secondary tables are usually defined at the type level and not the field or property level. This allows multiple fields and properties to share | |
javax.jdo.annotations.Key.types JDO Annotation Attribute in javax.jdo. annotations .Key Class[] types default {} Types of the keys. This can be determined if using JDK1.5 generics but is required otherwise. Multiple types can be specified if the implementation supports multiple types. Since: JDO 2.1 | |
javax.jdo.annotations.Join.generateForeignKey JDO Annotation Attribute in javax.jdo. annotations .Join String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or "false". Since: JDO 2.1 | |
javax.jdo.annotations.Join.primaryKey JDO Annotation Attribute in javax.jdo. annotations .Join String primaryKey default "" Name for a generated primary key constraint. Since: JDO 2.1 | |
javax.jdo.annotations.Join.extensions JDO Annotation Attribute in javax.jdo. annotations .Join Extension [] extensions default {} Vendor extensions. Since: JDO 2.1 | |
javax.jdo.annotations.Join.foreignKey JDO Annotation Attribute in javax.jdo. annotations .Join String foreignKey default "" Name for a generated foreign key constraint. Since: JDO 2.1 | |
javax.jdo.annotations.Join.deleteAction JDO Annotation Attribute in javax.jdo. annotations .Join ForeignKeyAction deleteAction default ForeignKeyAction.UNSPECIFIED Delete action to be applied to any ForeignKey on this join. Since: JDO 2.1 | |
javax.jdo.annotations.Join.outer JDO Annotation Attribute in javax.jdo. annotations .Join String outer default "" Whether to use an outer join. Since: JDO 2.1 | |
javax.jdo.annotations.Join.generatePrimaryKey JDO Annotation Attribute in javax.jdo. annotations .Join String generatePrimaryKey default "" Generate or assume a primary key constraint exists on the column or columns associated with this join. Specify "true" or "false". Since: JDO 2.1 | |
javax.jdo.annotations.Join.columns JDO Annotation Attribute in javax.jdo. annotations .Join Column [] columns default {} Detail definition of the join column(s). This is needed for more than one join column. Since: JDO 2.1 | |
javax.jdo.annotations.Join.uniqueKey JDO Annotation Attribute in javax.jdo. annotations .Join String uniqueKey default "" The name of the unique key constraint to generate. Since: JDO 2.1 | |
javax.jdo.annotations.Join.unique JDO Annotation Attribute in javax.jdo. annotations .Join String unique default "" Whether the join column is unique. Since: JDO 2.1 | |
javax.jdo.annotations.Key.columns JDO Annotation Attribute in javax.jdo. annotations .Key Column [] columns default {} The column(s) for the key Since: JDO 2.1 | |
javax.jdo.annotations.Key.mappedBy JDO Annotation Attribute in javax.jdo. annotations .Key String mappedBy default "" Name of a member in the value class where this key is stored. Since: JDO 2.1 | |
javax.jdo.annotations.Key.foreignKey JDO Annotation Attribute in javax.jdo. annotations .Key String foreignKey default "" Name for a generated foreign key constraint. Since: JDO 2.1 | |
javax.jdo.annotations.Key.generateForeignKey JDO Annotation Attribute in javax.jdo. annotations .Key String generateForeignKey default "" Generate or assume a foreign key constraint exists on the column or columns associated with this join. Specify "true" or "false". Since: JDO 2.1 | |
javax.jdo.annotations.Key.index JDO Annotation Attribute in javax.jdo. annotations .Key String index default "" The name of the index to generate. Since: JDO 2.1 | |
javax.jdo.annotations.Key.indexed JDO Annotation Attribute in javax.jdo. annotations .Key String indexed default "" Whether the value column(s) should be indexed. Since: JDO 2.1 | |
javax.jdo.annotations.Key.uniqueKey JDO Annotation Attribute in javax.jdo. annotations .Key String uniqueKey default "" The name of the unique key constraint to generate. Since: JDO 2.1 | |
javax.jdo.annotations.Key.unique JDO Annotation Attribute in javax.jdo. annotations .Key String unique default "" Whether the element column(s) contents should be considered unique Since: JDO 2.1 | |
javax.jdo.annotations.Key.column JDO Annotation Attribute in javax.jdo. annotations .Key String column default "" Name of the column to store the key in. Since: JDO 2.1 | |
javax.jdo.annotations.Key.table JDO Annotation Attribute in javax.jdo. annotations .Key String table default "" Name of the table for the key. Since: JDO 2.1 | |
javax.jdo.annotations.Key.updateAction JDO Annotation Attribute in javax.jdo. annotations .Key ForeignKeyAction updateAction default ForeignKeyAction.UNSPECIFIED Update action to apply to the foreign key for the key. Since: JDO 2.1 | |
javax.jdo.annotations.Key.deleteAction JDO Annotation Attribute in javax.jdo. annotations .Key ForeignKeyAction deleteAction default ForeignKeyAction.UNSPECIFIED Delete action to apply to the foreign key for the key. Since: JDO 2.1 |