public enum CopyDuplicate1Code extends java.lang.Enum<CopyDuplicate1Code>
| Enum Constant and Description |
|---|
CODU
Message is being sent as a copy to a party other than the account owner, for information purposes and the message is a duplicate of a message previously sent.
|
COPY
Message is being sent as a copy to a party other than the account owner, for information purposes.
|
DUPL
Message is for information/confirmation purposes.
|
| Modifier and Type | Method and Description |
|---|---|
static CopyDuplicate1Code |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CopyDuplicate1Code |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CopyDuplicate1Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CopyDuplicate1Code CODU
public static final CopyDuplicate1Code COPY
public static final CopyDuplicate1Code DUPL
public static CopyDuplicate1Code[] values()
for (CopyDuplicate1Code c : CopyDuplicate1Code.values()) System.out.println(c);
public static CopyDuplicate1Code 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 nullpublic java.lang.String value()
public static CopyDuplicate1Code fromValue(java.lang.String v)