Enum MessageSerializer.MessageParts
- java.lang.Object
-
- java.lang.Enum<MessageSerializer.MessageParts>
-
- org.apache.tinkerpop.gremlin.util.MessageSerializer.MessageParts
-
- All Implemented Interfaces:
Serializable
,Comparable<MessageSerializer.MessageParts>
- Enclosing interface:
- MessageSerializer<M>
public static enum MessageSerializer.MessageParts extends Enum<MessageSerializer.MessageParts>
-
-
Field Summary
Fields Modifier and Type Field Description static EnumSet<MessageSerializer.MessageParts>
ALL
static EnumSet<MessageSerializer.MessageParts>
CHUNK
static EnumSet<MessageSerializer.MessageParts>
END
static EnumSet<MessageSerializer.MessageParts>
ERROR
static EnumSet<MessageSerializer.MessageParts>
START
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageSerializer.MessageParts
valueOf(String name)
Returns the enum constant of this type with the specified name.static MessageSerializer.MessageParts[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEADER
public static final MessageSerializer.MessageParts HEADER
-
DATA
public static final MessageSerializer.MessageParts DATA
-
FOOTER
public static final MessageSerializer.MessageParts FOOTER
-
-
Field Detail
-
ALL
public static final EnumSet<MessageSerializer.MessageParts> ALL
-
START
public static final EnumSet<MessageSerializer.MessageParts> START
-
CHUNK
public static final EnumSet<MessageSerializer.MessageParts> CHUNK
-
END
public static final EnumSet<MessageSerializer.MessageParts> END
-
ERROR
public static final EnumSet<MessageSerializer.MessageParts> ERROR
-
-
Method Detail
-
values
public static MessageSerializer.MessageParts[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MessageSerializer.MessageParts c : MessageSerializer.MessageParts.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageSerializer.MessageParts valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-