public enum MailField extends Enum<MailField>
EtatAttente.| Enum Constant and Description |
|---|
CLIENT |
COMMENT |
COMPANY_REFERENCE |
ETAT_ATTENTE |
OBJECT |
PRIORITY |
PROJECT_REFERENCE |
RANGE_ROW |
| Modifier and Type | Method and Description |
|---|---|
static MailField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailField OBJECT
public static final MailField PROJECT_REFERENCE
public static final MailField PRIORITY
public static final MailField RANGE_ROW
public static final MailField CLIENT
public static final MailField ETAT_ATTENTE
public static final MailField COMPANY_REFERENCE
public static final MailField COMMENT
public static MailField[] values()
for (MailField c : MailField.values()) System.out.println(c);
public static MailField 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 © 2014 CodeLutin. All rights reserved.