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

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

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

Methods in org.eclipse.jpt.core.context that return FetchType
static FetchType FetchType.toJavaResourceModel(FetchType fetchType)
           
 

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

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

Methods in org.eclipse.jpt.core.resource.java that return FetchType
static FetchType FetchType.fromJavaAnnotationValue(java.lang.Object javaAnnotationValue)
           
 FetchType BasicAnnotation.getFetch()
          Corresponds to the fetch element of the Basic annotation.
 FetchType RelationshipMappingAnnotation.getFetch()
          Corresponds to the fetch element of the relationship annotations (ManyToMany, OneToMany, ManyToOne, OneToOne).
static FetchType FetchType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FetchType[] FetchType.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 FetchType
 void BasicAnnotation.setFetch(FetchType fetch)
          Corresponds to the fetch element of the Basic annotation.
 void RelationshipMappingAnnotation.setFetch(FetchType fetch)
          Corresponds to the fetch element of the relationship annotations (ManyToMany, OneToMany, ManyToOne, OneToOne).
static java.lang.String FetchType.toJavaAnnotationValue(FetchType fetchType)