public enum ODirection extends Enum<ODirection>
Modifier and Type | Method and Description |
---|---|
ODirection |
opposite() |
static ODirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ODirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ODirection OUT
public static final ODirection IN
public static final ODirection BOTH
public static ODirection[] values()
for (ODirection c : ODirection.values()) System.out.println(c);
public static ODirection 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 ODirection opposite()
Copyright © 2009–2020 OrientDB. All rights reserved.