public enum ObjectType extends java.lang.Enum<ObjectType>
| Enum Constant and Description |
|---|
ADDRESS_BOOK
Address book object.
|
ADDRESS_BOOK_CONTAINER
Address book container object.
|
ATTACHMENT
Message attachment object.
|
DISTRIBUTION_LIST
Distribution list object.
|
FOLDER
Folder object.
|
FORM
Form object.
|
MAIL_USER
Messaging user object.
|
MESSAGE
Message object.
|
MESSAGE_STORE
Message store object.
|
NONE
None.
|
PROFILE_SELECTION
Profile section object.
|
SESSION
Session object.
|
STATUS
Status object.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType ADDRESS_BOOK_CONTAINER
public static final ObjectType ADDRESS_BOOK
public static final ObjectType ATTACHMENT
public static final ObjectType DISTRIBUTION_LIST
public static final ObjectType FOLDER
public static final ObjectType FORM
public static final ObjectType MAIL_USER
public static final ObjectType MESSAGE
public static final ObjectType PROFILE_SELECTION
public static final ObjectType SESSION
public static final ObjectType STATUS
public static final ObjectType MESSAGE_STORE
public static final ObjectType NONE
public static ObjectType[] values()
for (ObjectType c : ObjectType.values()) System.out.println(c);
public static ObjectType 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