public enum LabelName extends Enum<LabelName>
| Enum Constant and Description |
|---|
HAS_EDGE |
HAS_PROPERTY |
INVERSE_OF |
IS_A |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static LabelName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelName HAS_PROPERTY
public static final LabelName HAS_EDGE
public static final LabelName IS_A
public static final LabelName INVERSE_OF
public static LabelName[] values()
for (LabelName c : LabelName.values()) System.out.println(c);
public static LabelName 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 © 2013–2016 V5 Analytics. All rights reserved.