Package com.googlecode.aviator.utils
Enum Reflector.PropertyType
- java.lang.Object
-
- java.lang.Enum<Reflector.PropertyType>
-
- com.googlecode.aviator.utils.Reflector.PropertyType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Reflector.PropertyType>
- Enclosing class:
- Reflector
public static enum Reflector.PropertyType extends java.lang.Enum<Reflector.PropertyType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Getter
StaticField
StaticMethod
-
Constructor Summary
Constructors Modifier Constructor Description private
PropertyType()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) boolean
isStaticProperty()
static Reflector.PropertyType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Reflector.PropertyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Getter
public static final Reflector.PropertyType Getter
-
StaticField
public static final Reflector.PropertyType StaticField
-
StaticMethod
public static final Reflector.PropertyType StaticMethod
-
-
Method Detail
-
values
public static Reflector.PropertyType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Reflector.PropertyType c : Reflector.PropertyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Reflector.PropertyType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
isStaticProperty
boolean isStaticProperty()
-
-