public static enum SearchServiceController.Verb extends Enum<SearchServiceController.Verb>
| Enum Constant and Description |
|---|
UPDATE_URIS_IN_SEARCH |
VIEW_HELP_FORM |
| Modifier and Type | Method and Description |
|---|---|
static SearchServiceController.Verb |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchServiceController.Verb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchServiceController.Verb VIEW_HELP_FORM
public static final SearchServiceController.Verb UPDATE_URIS_IN_SEARCH
public final String verb
public static SearchServiceController.Verb[] values()
for (SearchServiceController.Verb c : SearchServiceController.Verb.values()) System.out.println(c);
public static SearchServiceController.Verb 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 © 2022. All rights reserved.