public static enum CStub.Access extends java.lang.Enum<CStub.Access>
| Enum Constant and Description |
|---|
AUTO
Automatically determine the access type.
|
NON_STATIC
Access a non-static member.
|
STATIC
Access a static member.
|
| Modifier and Type | Method and Description |
|---|---|
static CStub.Access |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CStub.Access[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CStub.Access AUTO
public static final CStub.Access STATIC
public static final CStub.Access NON_STATIC
public static CStub.Access[] values()
for (CStub.Access c : CStub.Access.values()) System.out.println(c);
public static CStub.Access 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