public static enum SendResult.Type extends Enum<SendResult.Type>
| Enum Constant and Description | 
|---|
| Buffered | 
| Closed | 
| FailedOnError | 
| Success | 
| Modifier and Type | Method and Description | 
|---|---|
| static SendResult.Type | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SendResult.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SendResult.Type Success
public static final SendResult.Type FailedOnError
public static final SendResult.Type Buffered
public static final SendResult.Type Closed
public static SendResult.Type[] values()
for (SendResult.Type c : SendResult.Type.values()) System.out.println(c);
public static SendResult.Type 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. All Rights Reserved.