public enum CopyDuplicate1Code extends 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(String v) |
String |
value() |
static CopyDuplicate1Code |
valueOf(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(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 CopyDuplicate1Code fromValue(String v)