public enum GraphMode extends Enum<GraphMode>
| Modifier and Type | Method and Description |
|---|---|
byte |
code() |
boolean |
loading() |
boolean |
maintaining() |
String |
string() |
static GraphMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphMode NONE
public static final GraphMode RESTORING
public static final GraphMode MERGING
public static final GraphMode LOADING
public static GraphMode[] values()
for (GraphMode c : GraphMode.values()) System.out.println(c);
public static GraphMode 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 nullpublic byte code()
public String string()
public boolean maintaining()
public boolean loading()
Copyright © 2023 The Apache Software Foundation. All rights reserved.