Enum Class DocWriteRequest.OpType

java.lang.Object
java.lang.Enum<DocWriteRequest.OpType>
org.elasticsearch.action.DocWriteRequest.OpType
All Implemented Interfaces:
Serializable, Comparable<DocWriteRequest.OpType>, Constable
Enclosing interface:
DocWriteRequest<T>

public static enum DocWriteRequest.OpType extends Enum<DocWriteRequest.OpType>
Requested operation type to perform on the document
  • Enum Constant Details

    • INDEX

      public static final DocWriteRequest.OpType INDEX
      Index the source. If there an existing document with the id, it will be replaced.
    • CREATE

      public static final DocWriteRequest.OpType CREATE
      Creates the resource. Simply adds it to the index, if there is an existing document with the id, then it won't be removed.
    • UPDATE

      public static final DocWriteRequest.OpType UPDATE
      Updates a document
    • DELETE

      public static final DocWriteRequest.OpType DELETE
      Deletes a document
  • Method Details

    • values

      public static DocWriteRequest.OpType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DocWriteRequest.OpType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getId

      public byte getId()
    • getLowercase

      public String getLowercase()
    • fromId

      public static DocWriteRequest.OpType fromId(byte id)
    • fromString

      public static DocWriteRequest.OpType fromString(String sOpType)