Enum Class BuiltinStorageType

java.lang.Object
java.lang.Enum<BuiltinStorageType>
org.opensearch.client.opensearch.indices.BuiltinStorageType
All Implemented Interfaces:
Serializable, Comparable<BuiltinStorageType>, Constable, JsonEnum, JsonpSerializable

@JsonpDeserializable @Generated("org.opensearch.client.codegen.CodeGenerator") public enum BuiltinStorageType extends Enum<BuiltinStorageType> implements JsonEnum
The type of storage implementation.
  • Enum Constant Details

    • Fs

      public static final BuiltinStorageType Fs
      Uses the default file system implementation.
    • Hybridfs

      public static final BuiltinStorageType Hybridfs
      Uses a hybrid of memory-mapped and regular file system implementation.
    • Mmapfs

      public static final BuiltinStorageType Mmapfs
      Uses memory-mapped file system implementation.
    • Niofs

      public static final BuiltinStorageType Niofs
      Uses NIO file system implementation.
  • Field Details

  • Method Details

    • values

      public static BuiltinStorageType[] 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 BuiltinStorageType 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
    • jsonValue

      public String jsonValue()
      Specified by:
      jsonValue in interface JsonEnum