private static enum StructuredGraph.UnsafeAccessState extends Enum<StructuredGraph.UnsafeAccessState>
Enum Constant and Description |
---|
DISABLED |
HAS_ACCESS |
NO_ACCESS |
Modifier and Type | Method and Description |
---|---|
static StructuredGraph.UnsafeAccessState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredGraph.UnsafeAccessState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredGraph.UnsafeAccessState NO_ACCESS
public static final StructuredGraph.UnsafeAccessState HAS_ACCESS
public static final StructuredGraph.UnsafeAccessState DISABLED
public static StructuredGraph.UnsafeAccessState[] values()
for (StructuredGraph.UnsafeAccessState c : StructuredGraph.UnsafeAccessState.values()) System.out.println(c);
public static StructuredGraph.UnsafeAccessState 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