java.lang.Object
java.lang.Enum<OpCode>
net.rubyeye.xmemcached.command.binary.OpCode
All Implemented Interfaces:
Serializable, Comparable<OpCode>, java.lang.constant.Constable

public enum OpCode extends Enum<OpCode>
Binary command Opcodes
  • Enum Constant Details

    • GET

      public static final OpCode GET
    • GET_QUIETLY

      public static final OpCode GET_QUIETLY
    • GET_KEY

      public static final OpCode GET_KEY
    • GET_KEY_QUIETLY

      public static final OpCode GET_KEY_QUIETLY
    • SET

      public static final OpCode SET
    • SET_QUIETLY

      public static final OpCode SET_QUIETLY
    • REPLACE

      public static final OpCode REPLACE
    • REPLACE_QUIETLY

      public static final OpCode REPLACE_QUIETLY
    • ADD

      public static final OpCode ADD
    • ADD_QUIETLY

      public static final OpCode ADD_QUIETLY
    • APPEND

      public static final OpCode APPEND
    • APPEND_QUIETLY

      public static final OpCode APPEND_QUIETLY
    • PREPEND

      public static final OpCode PREPEND
    • PREPEND_QUIETLY

      public static final OpCode PREPEND_QUIETLY
    • DELETE

      public static final OpCode DELETE
    • DELETE_QUIETLY

      public static final OpCode DELETE_QUIETLY
    • VERSION

      public static final OpCode VERSION
    • QUITQ

      public static final OpCode QUITQ
    • STAT

      public static final OpCode STAT
    • NOOP

      public static final OpCode NOOP
    • INCREMENT

      public static final OpCode INCREMENT
    • INCREMENT_QUIETLY

      public static final OpCode INCREMENT_QUIETLY
    • DECREMENT

      public static final OpCode DECREMENT
    • DECREMENT_QUIETLY

      public static final OpCode DECREMENT_QUIETLY
    • FLUSH

      public static final OpCode FLUSH
    • FLUSH_QUIETLY

      public static final OpCode FLUSH_QUIETLY
    • AUTH_LIST_MECHANISMS

      public static final OpCode AUTH_LIST_MECHANISMS
    • AUTH_START

      public static final OpCode AUTH_START
    • AUTH_STEP

      public static final OpCode AUTH_STEP
    • VERBOSITY

      public static final OpCode VERBOSITY
    • TOUCH

      public static final OpCode TOUCH
    • GAT

      public static final OpCode GAT
    • GATQ

      public static final OpCode GATQ
    • CONFIG_GET

      public static final OpCode CONFIG_GET
    • CONFIG_SET

      public static final OpCode CONFIG_SET
    • CONFIG_DEL

      public static final OpCode CONFIG_DEL
  • Constructor Details

    • OpCode

      private OpCode()
  • Method Details

    • values

      public static OpCode[] 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

      public static OpCode 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
    • fieldValue

      public abstract byte fieldValue()