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