public static enum Introspected.AccessKind extends Enum<Introspected.AccessKind>
Enum Constant and Description |
---|
FIELD
Allows the use of public or package-protected fields to represent bean properties.
|
METHOD
The default behaviour which is to favour public getters for bean properties.
|
Modifier and Type | Method and Description |
---|---|
static Introspected.AccessKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Introspected.AccessKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Introspected.AccessKind FIELD
public static final Introspected.AccessKind METHOD
public static Introspected.AccessKind[] values()
for (Introspected.AccessKind c : Introspected.AccessKind.values()) System.out.println(c);
public static Introspected.AccessKind 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 null