public enum SenderStatus extends Enum<SenderStatus>
VALID_SENDER
,
NO_INFO_AVAILABLE
Enum Constant and Description |
---|
NO_INFO_AVAILABLE
No information about the requested sender could be retrieved.
|
VALID_SENDER
The sender exists in Digipost, and the broker is authorized to act on behalf
of the sender (typically send messages).
|
Modifier and Type | Method and Description |
---|---|
static SenderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SenderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SenderStatus NO_INFO_AVAILABLE
public static final SenderStatus VALID_SENDER
public static SenderStatus[] values()
for (SenderStatus c : SenderStatus.values()) System.out.println(c);
public static SenderStatus 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 nullCopyright © 2016 Digipost. All rights reserved.