public enum KEYWORD extends Enum<KEYWORD>
| Enum Constant and Description |
|---|
ADDRESS |
CITY |
COMPANY |
COUNTRY |
EMAIL |
FUTURE_DATE |
NAME |
NULL |
PARAGRAPH |
PASSWORD |
PAST_DATE |
PHONE |
STATE |
URL |
ZIP |
| Modifier and Type | Method and Description |
|---|---|
static KEYWORD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KEYWORD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KEYWORD NULL
public static final KEYWORD PAST_DATE
public static final KEYWORD FUTURE_DATE
public static final KEYWORD NAME
public static final KEYWORD ADDRESS
public static final KEYWORD CITY
public static final KEYWORD STATE
public static final KEYWORD COUNTRY
public static final KEYWORD ZIP
public static final KEYWORD PHONE
public static final KEYWORD EMAIL
public static final KEYWORD PARAGRAPH
public static final KEYWORD COMPANY
public static final KEYWORD URL
public static final KEYWORD PASSWORD
public static KEYWORD[] values()
for (KEYWORD c : KEYWORD.values()) System.out.println(c);
public static KEYWORD 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 © 2019. All rights reserved.