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

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

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

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

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

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

Methods in org.eclipse.jpt.core.resource.java that return AccessType
static AccessType AccessType.fromJavaAnnotationValue(java.lang.Object javaAnnotationValue)
           
 AccessType JavaResourcePersistentType.getAccess()
          Return tye type's access type ("field" or "property").
 AccessType JavaResourcePersistentAttribute.getSpecifiedAccess()
          Return the access type explicitly specified by the javax.persistence.Access annotation.
 AccessType AccessAnnotation.getValue()
          Corresponds to the 'value' element of the 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're declared.
 

Methods in org.eclipse.jpt.core.resource.java with parameters of type AccessType
 java.util.Iterator<JavaResourcePersistentAttribute> JavaResourcePersistentType.persistableAttributes(AccessType specifiedAccess)
          Return the persitable properties and/or fields given the non-null specified access type
 void AccessAnnotation.setValue(AccessType access)
          Corresponds to the 'value' element of the Access annotation.
static java.lang.String AccessType.toJavaAnnotationValue(AccessType accessType)