public enum ContactOrder extends Enum<ContactOrder>
| Enum Constant and Description |
|---|
ALERT
How often the active user have alerted the contact in a status or
comment.
|
MESSAGE_IN
How often the active user receives messages from the contact
|
MESSAGE_OUT
How often the active user sends messages to the contact
|
REFERENCE
How often the active user sets the contact as the reference on an item
field.
|
TASK
How often the active user assigns tasks to the contact
|
| Modifier and Type | Method and Description |
|---|---|
static ContactOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactOrder TASK
public static final ContactOrder MESSAGE_IN
public static final ContactOrder MESSAGE_OUT
public static final ContactOrder REFERENCE
public static final ContactOrder ALERT
public static ContactOrder[] values()
for (ContactOrder c : ContactOrder.values()) System.out.println(c);
public static ContactOrder 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. All Rights Reserved.