public static enum CmsAccountInfo.Field extends java.lang.Enum<CmsAccountInfo.Field>
| Enum Constant and Description |
|---|
addinfo
An additional info field.
|
address
The address field.
|
city
The city field.
|
country
The country field.
|
email
The email field.
|
firstname
The first name field.
|
institution
The institution field.
|
lastname
The last name field.
|
zipcode
The zip code field.
|
| Modifier and Type | Method and Description |
|---|---|
static CmsAccountInfo.Field |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsAccountInfo.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsAccountInfo.Field addinfo
public static final CmsAccountInfo.Field address
public static final CmsAccountInfo.Field city
public static final CmsAccountInfo.Field country
public static final CmsAccountInfo.Field email
public static final CmsAccountInfo.Field firstname
public static final CmsAccountInfo.Field institution
public static final CmsAccountInfo.Field lastname
public static final CmsAccountInfo.Field zipcode
public static CmsAccountInfo.Field[] values()
for (CmsAccountInfo.Field c : CmsAccountInfo.Field.values()) System.out.println(c);
public static CmsAccountInfo.Field valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null