public static enum TunableValidator.ValidationState extends Enum<TunableValidator.ValidationState>
Enum Constant and Description |
---|
INVALID
The input is invalid.
|
OK
The input is valid.
|
REQUEST_CONFIRMATION
Request confirmation from the user.
|
Modifier and Type | Method and Description |
---|---|
static TunableValidator.ValidationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TunableValidator.ValidationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TunableValidator.ValidationState INVALID
public static final TunableValidator.ValidationState OK
public static final TunableValidator.ValidationState REQUEST_CONFIRMATION
public static TunableValidator.ValidationState[] values()
for (TunableValidator.ValidationState c : TunableValidator.ValidationState.values()) System.out.println(c);
public static TunableValidator.ValidationState 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 2011-2015 Cytoscape Consortium. All rights reserved.