public enum PersonColumn extends Enum<PersonColumn>
Enum Constant and Description |
---|
EMAIL
The email.
|
FIRST_NAME
The first name.
|
ID
The id.
|
LAST_NAME
The last name.
|
LOGIN_NAME
The login name.
|
PHONE
The phone.
|
Modifier and Type | Method and Description |
---|---|
static PersonColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PersonColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersonColumn ID
public static final PersonColumn LOGIN_NAME
public static final PersonColumn FIRST_NAME
public static final PersonColumn LAST_NAME
public static final PersonColumn EMAIL
public static final PersonColumn PHONE
public static PersonColumn[] values()
for (PersonColumn c : PersonColumn.values()) System.out.println(c);
public static PersonColumn 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.