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 SummaryFields Modifier and Type Field Description static EnumSet<MessageSerializer.MessageParts>ALLstatic EnumSet<MessageSerializer.MessageParts>CHUNKstatic EnumSet<MessageSerializer.MessageParts>ENDstatic EnumSet<MessageSerializer.MessageParts>ERRORstatic EnumSet<MessageSerializer.MessageParts>START
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageSerializer.MessagePartsvalueOf(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- 
HEADERpublic static final MessageSerializer.MessageParts HEADER 
 - 
DATApublic static final MessageSerializer.MessageParts DATA 
 - 
FOOTERpublic static final MessageSerializer.MessageParts FOOTER 
 
- 
 - 
Field Detail- 
ALLpublic static final EnumSet<MessageSerializer.MessageParts> ALL 
 - 
STARTpublic static final EnumSet<MessageSerializer.MessageParts> START 
 - 
CHUNKpublic static final EnumSet<MessageSerializer.MessageParts> CHUNK 
 - 
ENDpublic static final EnumSet<MessageSerializer.MessageParts> END 
 - 
ERRORpublic static final EnumSet<MessageSerializer.MessageParts> ERROR 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-