public static enum Reflector.PropertyType extends Enum<Reflector.PropertyType>
| Enum Constant and Description |
|---|
Getter |
StaticField |
StaticMethod |
| Modifier and Type | Method and Description |
|---|---|
static Reflector.PropertyType |
valueOf(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.
|
public static final Reflector.PropertyType Getter
public static final Reflector.PropertyType StaticField
public static final Reflector.PropertyType StaticMethod
public static Reflector.PropertyType[] values()
for (Reflector.PropertyType c : Reflector.PropertyType.values()) System.out.println(c);
public static Reflector.PropertyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010–2022. All rights reserved.