public static enum Introspected.AccessKind extends java.lang.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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null