Uses of Interface
org.apache.jdo.model.jdo.JDOField

Packages that use JDOField
org.apache.jdo.impl.model.jdo This package contains classes that implement the JDO model interfaces and provide access to JDO metadata. 
org.apache.jdo.impl.model.jdo.caching   
org.apache.jdo.impl.model.jdo.util   
org.apache.jdo.model.jdo This package defines the JDOModel API. 
 

Uses of JDOField in org.apache.jdo.impl.model.jdo
 

Classes in org.apache.jdo.impl.model.jdo that implement JDOField
 class JDOAssociatedPropertyImplDynamic
          An instance of this class represents the JDO metadata of a managed property of a persistence capable class.
 class JDOFieldImplDynamic
          An instance of this class represents the JDO metadata of a managed field of a persistence capable class.
 class JDOPropertyImplDynamic
          An instance of this class represents the JDO metadata of a managed property of a persistence capable class.
 

Methods in org.apache.jdo.impl.model.jdo that return JDOField
 JDOField JDOPropertyImplDynamic.getAssociatedJDOField()
          Return the JDOField instance associated with this property, if available.
 JDOField JDORelationshipImpl.getDeclaringField()
          Get the declaring field of this JDORelationship.
 JDOField JDOClassImplDynamic.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 JDOField[] JDOClassImplDynamic.getDeclaredFields()
          Returns the collection of JDOField instances declared by this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getDeclaredManagedFields()
          Returns the collection of managed JDOField instances declared by this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getManagedFields()
          Returns the collection of managed JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getPersistentFields()
          Returns the collection of persistent JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getPrimaryKeyFields()
          Returns the collection of identifying fields of this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getPersistentRelationshipFields()
          Returns the collection of persistent relationship fields of this JDOClass in the form of an array.
 JDOField[] JDOClassImplDynamic.getDefaultFetchGroupFields()
          Returns the collection of default fetch group fields of this JDOClass in the form of an array.
 JDOField JDOClassImplDynamic.getManagedField(java.lang.String fieldName)
          Returns JDOField metadata for a particular managed field specified by field name.
 JDOField JDOClassImplDynamic.getField(java.lang.String fieldName)
          Returns JDOField metadata for a particular field specified by field name.
 JDOField JDOClassImplDynamic.getField(int fieldNumber)
          Provides metadata for a particular field specified by the absolute field number.
 JDOField JDOClassImplDynamic.getDeclaredField(java.lang.String name)
          Returns JDOField metadata for a particular declared field for the specified name.
protected  JDOField JDOClassImplDynamic.getFieldInternal(java.lang.String fieldName)
          Returns the JDOField definition for the specified field.
protected  JDOField[] JDOClassImplDynamic.getDeclaredPrimaryKeyFields()
          Returns the collection of identifying declared fields of this JDOClass in the form of an array.
protected  JDOField JDOClassImplDynamic.newJDOFieldInstance(java.lang.String name)
          Returns a new instance of the JDOField implementation class.
 JDOField JDOAssociatedPropertyImplDynamic.getAssociatedJDOField()
          Return the JDOField instance associated with this property, if available.
 

Methods in org.apache.jdo.impl.model.jdo with parameters of type JDOField
 void JDORelationshipImpl.setDeclaringField(JDOField declaringField)
          Set the declaring field of this JDORelationship.
 JDOProperty JDOClassImplDynamic.createJDOProperty(java.lang.String name, JDOField associatedJDOField)
          This method returns a JDOProperty instance for the property with the specified name and associated field.
 JDOProperty JDOClassImplDynamic.getAssociatedProperty(JDOField field)
          Returns JDOProperty metadata for a property having the specified JDOField as associated JDOField.
protected  JDOProperty JDOClassImplDynamic.newJDOPropertyInstance(java.lang.String name, JDOField associatedJDOField)
          Returns a new instance of the JDOProperty implementation class.
 

Constructors in org.apache.jdo.impl.model.jdo with parameters of type JDOField
JDOAssociatedPropertyImplDynamic(java.lang.String name, JDOClass declaringClass, JDOField associatedJDOField)
          Constrcutor.
 

Uses of JDOField in org.apache.jdo.impl.model.jdo.caching
 

Classes in org.apache.jdo.impl.model.jdo.caching that implement JDOField
 class JDOAssociatedPropertyImplCaching
          An instance of this class represents the JDO metadata of a managed property of a persistence capable class.
 class JDOFieldImplCaching
          An instance of this class represents the JDO metadata of a managed field of a persistence capable class.
 class JDOPropertyImplCaching
          An instance of this class represents the JDO metadata of a managed field of a persistence capable class.
 

Methods in org.apache.jdo.impl.model.jdo.caching that return JDOField
 JDOField JDOClassImplCaching.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 JDOField[] JDOClassImplCaching.getDeclaredManagedFields()
          Returns the collection of managed JDOField instances declared by this JDOClass in the form of an array.
 JDOField[] JDOClassImplCaching.getManagedFields()
          Returns the collection of managed JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClassImplCaching.getPersistentFields()
          Returns the collection of persistent JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClassImplCaching.getPrimaryKeyFields()
          Returns the collection of identifying fields of this JDOClass in the form of an array.
 JDOField[] JDOClassImplCaching.getPersistentRelationshipFields()
          Returns the collection of persistent relationship fields of this JDOClass in the form of an array.
 JDOField[] JDOClassImplCaching.getDefaultFetchGroupFields()
          Returns the collection of default fetch group fields of this JDOClass in the form of an array.
protected  JDOField JDOClassImplCaching.newJDOFieldInstance(java.lang.String name)
          Returns a new instance of the JDOField implementation class.
 JDOField JDOPropertyImplCaching.getAssociatedJDOField()
          Return the JDOField instance associated with this property, if available.
 

Methods in org.apache.jdo.impl.model.jdo.caching with parameters of type JDOField
protected  JDOProperty JDOClassImplCaching.newJDOPropertyInstance(java.lang.String name, JDOField associatedJDOField)
          Returns a new instance of the JDOProperty implementation class.
 

Constructors in org.apache.jdo.impl.model.jdo.caching with parameters of type JDOField
JDOAssociatedPropertyImplCaching(java.lang.String name, JDOClass declaringClass, JDOField associatedJDOField)
          Constructor.
 

Uses of JDOField in org.apache.jdo.impl.model.jdo.util
 

Methods in org.apache.jdo.impl.model.jdo.util with parameters of type JDOField
static void PrintSupport.printJDOFields(JDOField[] jdoFields)
           
static void PrintSupport.printJDOField(JDOField jdoField)
           
 

Uses of JDOField in org.apache.jdo.model.jdo
 

Subinterfaces of JDOField in org.apache.jdo.model.jdo
 interface JDOProperty
          A JDOProperty instance represents the JDO metadata of a property of a persistence-capable class.
 

Methods in org.apache.jdo.model.jdo that return JDOField
 JDOField JDOClass.createJDOField(java.lang.String name)
          This method returns a JDOField instance for the field with the specified name.
 JDOField[] JDOClass.getDeclaredFields()
          Returns the collection of JDOField instances declared by this JDOClass in the form of an array.
 JDOField[] JDOClass.getDeclaredManagedFields()
          Returns the collection of managed JDOField instances declared by this JDOClass in the form of an array.
 JDOField[] JDOClass.getManagedFields()
          Returns the collection of managed JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClass.getPersistentFields()
          Returns the collection of persistent JDOField instances of this JDOClass in the form of an array.
 JDOField[] JDOClass.getPrimaryKeyFields()
          Returns the collection of identifying fields of this JDOClass in the form of an array.
 JDOField[] JDOClass.getPersistentRelationshipFields()
          Returns the collection of persistent relationship fields of this JDOClass in the form of an array.
 JDOField[] JDOClass.getDefaultFetchGroupFields()
          Returns the collection of default fetch group fields of this JDOClass in the form of an array.
 JDOField JDOClass.getManagedField(java.lang.String fieldName)
          Returns JDOField metadata for a particular managed field specified by field name.
 JDOField JDOClass.getField(java.lang.String fieldName)
          Returns JDOField metadata for a particular field specified by field name.
 JDOField JDOClass.getField(int fieldNumber)
          Provides metadata for a particular field specified by the absolute field number.
 JDOField JDOClass.getDeclaredField(java.lang.String fieldName)
          Returns JDOField metadata for a particular declared field specified by field name.
 JDOField JDOProperty.getAssociatedJDOField()
          Return the JDOField instance associated with this property, if available.
 JDOField JDORelationship.getDeclaringField()
          Get the declaring field of this JDORelationship.
 

Methods in org.apache.jdo.model.jdo with parameters of type JDOField
 JDOProperty JDOClass.createJDOProperty(java.lang.String name, JDOField associatedField)
          This method returns a JDOProperty instance for the property with the specified name and associated field.
 JDOProperty JDOClass.getAssociatedProperty(JDOField field)
          Returns JDOProperty metadata for a property having the specified JDOField as associated JDOField.
 void JDORelationship.setDeclaringField(JDOField declaringField)
          Set the declaring field of this JDORelationship.
 



Copyright © 2005 Apache Software Foundation. All Rights Reserved.