public enum UserProfileFields extends Enum<UserProfileFields>
Enum Constant and Description |
---|
CITY
CITY.
|
COMPANY
COMPANY.
|
COUNTRY
COUNTRY.
|
FAX
FAX.
|
FIRSTNAME
FIRSTNAME.
|
LANGUAGE
LANGUAGE.
|
LASTNAME
LASTNAME.
|
PHONE
PHONE.
|
POSITION
POSITION.
|
SALUTATION
Salutation.
|
STREET
Street.
|
TIMEZONE
TIMEZONE.
|
ZIP
ZIP.
|
Modifier and Type | Method and Description |
---|---|
static UserProfileFields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserProfileFields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserProfileFields SALUTATION
public static final UserProfileFields FIRSTNAME
public static final UserProfileFields LASTNAME
public static final UserProfileFields COMPANY
public static final UserProfileFields POSITION
public static final UserProfileFields STREET
public static final UserProfileFields ZIP
public static final UserProfileFields CITY
public static final UserProfileFields FAX
public static final UserProfileFields PHONE
public static final UserProfileFields LANGUAGE
public static final UserProfileFields COUNTRY
public static final UserProfileFields TIMEZONE
public static UserProfileFields[] values()
for (UserProfileFields c : UserProfileFields.values()) System.out.println(c);
public static UserProfileFields 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 Communote team. All rights reserved.