public enum BounceCode extends java.lang.Enum<BounceCode>
Enum Constant and Description |
---|
B
Non-existent address
|
D
Undeliverable
|
F
Mailbox full
|
S
Suspended
|
V
Vacation or auto-reply
|
X
Other/unknown
|
Z
Blocked
|
Modifier and Type | Method and Description |
---|---|
static BounceCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BounceCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BounceCode B
public static final BounceCode S
public static final BounceCode D
public static final BounceCode F
public static final BounceCode V
public static final BounceCode Z
public static final BounceCode X
public static BounceCode[] values()
for (BounceCode c : BounceCode.values()) System.out.println(c);
public static BounceCode 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 null