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