public enum KeyFor extends Enum<KeyFor>
| Enum Constant and Description |
|---|
ALL
The key is usable by any element of the GraphML.
|
EDGE
The key is targeted at <edge> tags.
|
GRAPH
The key is targeted at <graph> tags..
|
NODE
The key is targeted at <node> tags.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Returns the value of the <for> property.
|
static KeyFor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyFor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyFor ALL
public static final KeyFor EDGE
public static final KeyFor GRAPH
public static final KeyFor NODE
public static KeyFor[] values()
for (KeyFor c : KeyFor.values()) System.out.println(c);
public static KeyFor 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 String getValue()
Copyright © 2020. All rights reserved.