Enum CommandHelper.LasInnerCommandId
java.lang.Object
java.lang.Enum<CommandHelper.LasInnerCommandId>
com.illumon.iris.db.v2.logaggregator.CommandHelper.LasInnerCommandId
- All Implemented Interfaces:
Serializable
,Comparable<CommandHelper.LasInnerCommandId>
,java.lang.constant.Constable
- Enclosing class:
- CommandHelper
public static enum CommandHelper.LasInnerCommandId extends Enum<CommandHelper.LasInnerCommandId>
These commands are embedded in
CommandHelper.LasCommandId.LAS_COMMAND
command structures.-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_DELETE_PARTITION
client:server request to delete a table partition.CLIENT_FINISHED
client:server no more rows will be sent.CLIENT_REQUEST_FLUSH
client:server flush all records and ack when finished.CLIENT_TEST_ABORT
-
Field Summary
-
Method Summary
Modifier and Type Method Description boolean
equals(byte val)
static CommandHelper.LasInnerCommandId
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommandHelper.LasInnerCommandId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLIENT_TEST_ABORT
-
CLIENT_REQUEST_FLUSH
client:server flush all records and ack when finished. -
CLIENT_FINISHED
client:server no more rows will be sent. The socket will be closed immediately. -
CLIENT_DELETE_PARTITION
client:server request to delete a table partition. This may be followed by additional command data.
-
-
Field Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
equals
public boolean equals(byte val)
-