public enum SearchField extends Enum<SearchField>
Java class for searchField.
The following schema fragment specifies the expected content contained within this class.
Enum Constant and Description |
---|
ADDRESS |
BADGE_ID |
CARD_ID |
EMAIL |
LOGIN |
NAME |
NUMBER |
Modifier and Type | Method and Description |
---|---|
static SearchField |
fromValue(String v) |
String |
value() |
static SearchField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchField NAME
public static final SearchField EMAIL
public static final SearchField ADDRESS
public static final SearchField LOGIN
public static final SearchField NUMBER
public static final SearchField CARD_ID
public static final SearchField BADGE_ID
public static SearchField[] values()
for (SearchField c : SearchField.values()) System.out.println(c);
public static SearchField 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 value()
public static SearchField fromValue(String v)
Copyright © 2021. All rights reserved.