Uses of Class
org.eclipse.jpt.jpa.core.resource.java.AccessType

Packages that use AccessType
org.eclipse.jpt.jpa.core.context   
org.eclipse.jpt.jpa.core.jpa2.resource.java   
org.eclipse.jpt.jpa.core.resource.java   
 

Uses of AccessType in org.eclipse.jpt.jpa.core.context
 

Methods in org.eclipse.jpt.jpa.core.context that return AccessType
 AccessType AccessType.getJavaAccessType()
           
static AccessType AccessType.toJavaResourceModel(AccessType accessType)
           
 

Methods in org.eclipse.jpt.jpa.core.context with parameters of type AccessType
static AccessType AccessType.fromJavaResourceModel(AccessType javaAccessType)
           
 

Uses of AccessType in org.eclipse.jpt.jpa.core.jpa2.resource.java
 

Methods in org.eclipse.jpt.jpa.core.jpa2.resource.java that return AccessType
 AccessType Access2_0Annotation.getValue()
          Corresponds to the 'value' element of the Access annotation.
 

Methods in org.eclipse.jpt.jpa.core.jpa2.resource.java with parameters of type AccessType
 void Access2_0Annotation.setValue(AccessType access)
          Corresponds to the 'value' element of the Access annotation.
 

Uses of AccessType in org.eclipse.jpt.jpa.core.resource.java
 

Methods in org.eclipse.jpt.jpa.core.resource.java that return AccessType
static AccessType JavaResourcePersistentType.Tools.buildAccess(JavaResourcePersistentType jrpType)
          Return the access type currently implied by the specified Java source code or class file: if any fields are annotated => FIELD if only properties are annotated => PROPERTY if neither are annotated => null
static AccessType AccessType.fromJavaAnnotationValue(java.lang.Object javaAnnotationValue)
           
 AccessType JavaResourcePersistentAttribute.getSpecifiedAccess()
          Return the access type explicitly specified by the javax.persistence.Access annotation.
static AccessType AccessType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccessType[] AccessType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.eclipse.jpt.jpa.core.resource.java with parameters of type AccessType
 java.util.Iterator<JavaResourcePersistentAttribute> JavaResourcePersistentType.persistableAttributes(AccessType specifiedAccess)
          Return the persistable properties and/or fields given the non-null specified access type
static java.lang.String AccessType.toJavaAnnotationValue(AccessType accessType)