Class Member
- java.lang.Object
- 
- org.datanucleus.metadata.annotations.Member
 
- 
 public class Member extends Object Wrapper for a field or a method (property) that is annotated.
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TypegetGenericType()Accessor to the generic typeintgetModifiers()Accessor to the field / method modifiersStringgetName()Field name or Method name (without get/set/is prefix)ClassgetType()Accessor to the field or method return type.booleanisProperty()If this class is a field or method (property).
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() Field name or Method name (without get/set/is prefix)- Returns:
- Name of the field or property.
 
 - 
isPropertypublic boolean isProperty() If this class is a field or method (property).- Returns:
- true if it is a method (property). false if it is a field.
 
 - 
getTypepublic Class getType() Accessor to the field or method return type.- Returns:
- Type of the field/property
 
 - 
getModifierspublic int getModifiers() Accessor to the field / method modifiers- Returns:
- modifiers for the field/method.
 
 - 
getGenericTypepublic Type getGenericType() Accessor to the generic type- Returns:
- Generic type
 
 
- 
 
-