Enum Class Schema.IndexState

java.lang.Object
java.lang.Enum<Schema.IndexState>
org.neo4j.graphdb.schema.Schema.IndexState
All Implemented Interfaces:
Serializable, Comparable<Schema.IndexState>, Constable
Enclosing interface:
Schema

public static enum Schema.IndexState extends Enum<Schema.IndexState>
The states that an index can be in. This mostly relates to tracking the background population of an index, to tell when it is done populating and is online serving requests.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
     
     
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.
  • Enum Constant Details

  • Method Details

    • values

      public static Schema.IndexState[] 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 Schema.IndexState 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