Package com.independentsoft.msg
Enum Class ObjectType
- All Implemented Interfaces:
Serializable,Comparable<ObjectType>,Constable
Represents type of an object.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAddress book object.Address book container object.Message attachment object.Distribution list object.Folder object.Form object.Messaging user object.Message object.Message store object.None.Profile section object.Session object.Status object. -
Method Summary
Modifier and TypeMethodDescriptionstatic ObjectTypeReturns the enum constant of this class with the specified name.static ObjectType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADDRESS_BOOK_CONTAINER
Address book container object. -
ADDRESS_BOOK
Address book object. -
ATTACHMENT
Message attachment object. -
DISTRIBUTION_LIST
Distribution list object. -
FOLDER
Folder object. -
FORM
Form object. -
MAIL_USER
Messaging user object. -
MESSAGE
Message object. -
PROFILE_SELECTION
Profile section object. -
SESSION
Session object. -
STATUS
Status object. -
MESSAGE_STORE
Message store object. -
NONE
None.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-