public enum MessageDispositionType extends Enum<MessageDispositionType>
Java class for MessageDispositionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MessageDispositionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="SaveOnly"/>
<enumeration value="SendOnly"/>
<enumeration value="SendAndSaveCopy"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
SAVE_ONLY |
SEND_AND_SAVE_COPY |
SEND_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static MessageDispositionType |
fromValue(String v) |
String |
value() |
static MessageDispositionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageDispositionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageDispositionType SAVE_ONLY
public static final MessageDispositionType SEND_ONLY
public static final MessageDispositionType SEND_AND_SAVE_COPY
public static MessageDispositionType[] values()
for (MessageDispositionType c : MessageDispositionType.values()) System.out.println(c);
public static MessageDispositionType 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 nullpublic String value()
public static MessageDispositionType fromValue(String v)
Copyright © 2018 Apereo. All Rights Reserved.