org.apache.cassandra.net
Enum MessagingService.Verb

java.lang.Object
  extended by java.lang.Enum<MessagingService.Verb>
      extended by org.apache.cassandra.net.MessagingService.Verb
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MessagingService.Verb>
Enclosing class:
MessagingService

public static enum MessagingService.Verb
extends java.lang.Enum<MessagingService.Verb>


Enum Constant Summary
_TRACE
           
BINARY
          Deprecated. 
BOOTSTRAP_TOKEN
           
COUNTER_MUTATION
           
DEFINITIONS_ANNOUNCE
          Deprecated. 
DEFINITIONS_UPDATE
           
GOSSIP_DIGEST_ACK
           
GOSSIP_DIGEST_ACK2
           
GOSSIP_DIGEST_SYN
           
GOSSIP_SHUTDOWN
           
INDEX_SCAN
          Deprecated. 
INTERNAL_RESPONSE
           
JOIN
          Deprecated. 
MIGRATION_REQUEST
           
MUTATION
           
RANGE_SLICE
           
READ
           
READ_REPAIR
           
REPLICATION_FINISHED
           
REQUEST_RESPONSE
           
SCHEMA_CHECK
           
SNAPSHOT
           
STREAM_INITIATE
          Deprecated. 
STREAM_INITIATE_DONE
          Deprecated. 
STREAM_REPLY
           
STREAM_REQUEST
           
STREAMING_REPAIR_REQUEST
           
STREAMING_REPAIR_RESPONSE
           
TREE_REQUEST
           
TREE_RESPONSE
           
TRUNCATE
           
UNUSED_1
           
UNUSED_2
           
UNUSED_3
           
 
Method Summary
static MessagingService.Verb valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MessagingService.Verb[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

MUTATION

public static final MessagingService.Verb MUTATION

BINARY

@Deprecated
public static final MessagingService.Verb BINARY
Deprecated. 

READ_REPAIR

public static final MessagingService.Verb READ_REPAIR

READ

public static final MessagingService.Verb READ

REQUEST_RESPONSE

public static final MessagingService.Verb REQUEST_RESPONSE

STREAM_INITIATE

@Deprecated
public static final MessagingService.Verb STREAM_INITIATE
Deprecated. 

STREAM_INITIATE_DONE

@Deprecated
public static final MessagingService.Verb STREAM_INITIATE_DONE
Deprecated. 

STREAM_REPLY

public static final MessagingService.Verb STREAM_REPLY

STREAM_REQUEST

public static final MessagingService.Verb STREAM_REQUEST

RANGE_SLICE

public static final MessagingService.Verb RANGE_SLICE

BOOTSTRAP_TOKEN

public static final MessagingService.Verb BOOTSTRAP_TOKEN

TREE_REQUEST

public static final MessagingService.Verb TREE_REQUEST

TREE_RESPONSE

public static final MessagingService.Verb TREE_RESPONSE

JOIN

@Deprecated
public static final MessagingService.Verb JOIN
Deprecated. 

GOSSIP_DIGEST_SYN

public static final MessagingService.Verb GOSSIP_DIGEST_SYN

GOSSIP_DIGEST_ACK

public static final MessagingService.Verb GOSSIP_DIGEST_ACK

GOSSIP_DIGEST_ACK2

public static final MessagingService.Verb GOSSIP_DIGEST_ACK2

DEFINITIONS_ANNOUNCE

@Deprecated
public static final MessagingService.Verb DEFINITIONS_ANNOUNCE
Deprecated. 

DEFINITIONS_UPDATE

public static final MessagingService.Verb DEFINITIONS_UPDATE

TRUNCATE

public static final MessagingService.Verb TRUNCATE

SCHEMA_CHECK

public static final MessagingService.Verb SCHEMA_CHECK

INDEX_SCAN

@Deprecated
public static final MessagingService.Verb INDEX_SCAN
Deprecated. 

REPLICATION_FINISHED

public static final MessagingService.Verb REPLICATION_FINISHED

INTERNAL_RESPONSE

public static final MessagingService.Verb INTERNAL_RESPONSE

COUNTER_MUTATION

public static final MessagingService.Verb COUNTER_MUTATION

STREAMING_REPAIR_REQUEST

public static final MessagingService.Verb STREAMING_REPAIR_REQUEST

STREAMING_REPAIR_RESPONSE

public static final MessagingService.Verb STREAMING_REPAIR_RESPONSE

SNAPSHOT

public static final MessagingService.Verb SNAPSHOT

MIGRATION_REQUEST

public static final MessagingService.Verb MIGRATION_REQUEST

GOSSIP_SHUTDOWN

public static final MessagingService.Verb GOSSIP_SHUTDOWN

_TRACE

public static final MessagingService.Verb _TRACE

UNUSED_1

public static final MessagingService.Verb UNUSED_1

UNUSED_2

public static final MessagingService.Verb UNUSED_2

UNUSED_3

public static final MessagingService.Verb UNUSED_3
Method Detail

values

public static MessagingService.Verb[] 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 (MessagingService.Verb c : MessagingService.Verb.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MessagingService.Verb valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2012 The Apache Software Foundation