public enum StructKind extends Enum<StructKind>
| Enum Constant and Description |
|---|
FULLY_QUALIFIED
Fully qualified access required.
|
NONE
No special struct semantics.
|
PEEK_FIELDS
Fields are implicitly available without qualification.
|
PEEK_FIELDS_DEFAULT
Fields must be accessed via the qualifier.
|
| Modifier and Type | Method and Description |
|---|---|
static StructKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructKind FULLY_QUALIFIED
public static final StructKind PEEK_FIELDS
public static final StructKind PEEK_FIELDS_DEFAULT
public static final StructKind NONE
public static StructKind[] values()
for (StructKind c : StructKind.values()) System.out.println(c);
public static StructKind 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