Enum DocWriteRequest.OpType

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

public static enum DocWriteRequest.OpType
extends java.lang.Enum<DocWriteRequest.OpType>
Requested operation type to perform on the document
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    CREATE
    Creates the resource.
    DELETE
    Deletes a document
    INDEX
    Index the source.
    UPDATE
    Updates a document
  • Method Summary

    Modifier and Type Method Description
    static DocWriteRequest.OpType fromId​(byte id)  
    static DocWriteRequest.OpType fromString​(java.lang.String sOpType)  
    byte getId()  
    java.lang.String getLowercase()  
    static DocWriteRequest.OpType valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static DocWriteRequest.OpType[] 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, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • 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 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 DocWriteRequest.OpType 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
    • getId

      public byte getId()
    • getLowercase

      public java.lang.String getLowercase()
    • fromId

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

      public static DocWriteRequest.OpType fromString​(java.lang.String sOpType)