Enum IndexType

java.lang.Object
java.lang.Enum<IndexType>
com.hazelcast.config.IndexType
All Implemented Interfaces:
Serializable, Comparable<IndexType>, java.lang.constant.Constable

public enum IndexType
extends Enum<IndexType>
Type of the index.
  • Enum Constant Details

    • SORTED

      public static final IndexType SORTED
      Sorted index. Can be used with equality and range predicates.
    • HASH

      public static final IndexType HASH
      Hash index. Can be used with equality predicates.
    • BITMAP

      public static final IndexType BITMAP
      Bitmap index. Can be used with equality predicates.
  • Method Details

    • values

      public static IndexType[] 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 IndexType 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
    • getId

      public int getId()
      Gets the ID for the given IndexType.
      Returns:
      the ID
    • getById

      public static IndexType getById​(int id)
      Returns the IndexType as an enum.
      Returns:
      the IndexType as an enum