public static enum TerminalPage.Search extends Enum<TerminalPage.Search>
Enum Constant and Description |
---|
NO_SEARCH |
NOT_FOUND |
RESULT |
SEARCHING |
Modifier and Type | Method and Description |
---|---|
static TerminalPage.Search |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TerminalPage.Search[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalPage.Search SEARCHING
public static final TerminalPage.Search RESULT
public static final TerminalPage.Search NOT_FOUND
public static final TerminalPage.Search NO_SEARCH
public static TerminalPage.Search[] values()
for (TerminalPage.Search c : TerminalPage.Search.values()) System.out.println(c);
public static TerminalPage.Search 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 © 2018 JBoss by Red Hat. All rights reserved.