public static enum CallbackInterface.SearchStatus extends Enum<CallbackInterface.SearchStatus>
Enum Constant and Description |
---|
PATH_COMPLETE |
PATH_ILLEGAL |
PATH_IMPOSSIBLE |
PATH_INVALID |
PATH_VALID |
Modifier and Type | Method and Description |
---|---|
static CallbackInterface.SearchStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallbackInterface.SearchStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallbackInterface.SearchStatus PATH_VALID
public static final CallbackInterface.SearchStatus PATH_INVALID
public static final CallbackInterface.SearchStatus PATH_COMPLETE
public static final CallbackInterface.SearchStatus PATH_ILLEGAL
public static final CallbackInterface.SearchStatus PATH_IMPOSSIBLE
public static CallbackInterface.SearchStatus[] values()
for (CallbackInterface.SearchStatus c : CallbackInterface.SearchStatus.values()) System.out.println(c);
public static CallbackInterface.SearchStatus 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 null