public static enum OutMessage.SendState extends java.lang.Enum<OutMessage.SendState>
| Enum Constant and Description | 
|---|
HEADER_BUILT  | 
INIT  | 
PARTIALLY_SERIALIZED  | 
SENT_INTERNALLY  | 
SERIALIZED  | 
| Modifier and Type | Method and Description | 
|---|---|
static OutMessage.SendState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static OutMessage.SendState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OutMessage.SendState INIT
public static final OutMessage.SendState SENT_INTERNALLY
public static final OutMessage.SendState HEADER_BUILT
public static final OutMessage.SendState PARTIALLY_SERIALIZED
public static final OutMessage.SendState SERIALIZED
public static OutMessage.SendState[] values()
for (OutMessage.SendState c : OutMessage.SendState.values()) System.out.println(c);
public static OutMessage.SendState 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