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