public static enum Graph.LoadLevel extends Enum<Graph.LoadLevel>
Modifier and Type | Method and Description |
---|---|
static Graph.LoadLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Graph.LoadLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Graph.LoadLevel BASIC
public static final Graph.LoadLevel FULL
public static final Graph.LoadLevel DEBUG
public static Graph.LoadLevel[] values()
for (Graph.LoadLevel c : Graph.LoadLevel.values()) System.out.println(c);
public static Graph.LoadLevel 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 nullCopyright © 2018. All rights reserved.