public enum OptionValueType extends Enum<OptionValueType>
| Enum Constant and Description |
|---|
MAY
There may be a value supplied.
|
MUST
There must be a supplied value.
|
NONE
No value is to be specified.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static OptionValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionValueType NONE
public static final OptionValueType MAY
public static final OptionValueType MUST
public static OptionValueType[] values()
for (OptionValueType c : OptionValueType.values()) System.out.println(c);
public static OptionValueType 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 getDescription()
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.