public static enum Introspected.Visibility extends Enum<Introspected.Visibility>
Enum Constant and Description |
---|
DEFAULT
The default behaviour which in addition to public getters and setters will also include package protected fields if an
Introspected.AccessKind of Introspected.AccessKind.FIELD is specified. |
PUBLIC
Only public methods and/or fields are included.
|
Modifier and Type | Method and Description |
---|---|
static Introspected.Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Introspected.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Introspected.Visibility PUBLIC
public static final Introspected.Visibility DEFAULT
Introspected.AccessKind
of Introspected.AccessKind.FIELD
is specified.public static Introspected.Visibility[] values()
for (Introspected.Visibility c : Introspected.Visibility.values()) System.out.println(c);
public static Introspected.Visibility 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