org.elasticsearch.cluster.metadata
Enum IndexMetaData.State

java.lang.Object
  extended by java.lang.Enum<IndexMetaData.State>
      extended by org.elasticsearch.cluster.metadata.IndexMetaData.State
All Implemented Interfaces:
Serializable, Comparable<IndexMetaData.State>
Enclosing class:
IndexMetaData

public static enum IndexMetaData.State
extends Enum<IndexMetaData.State>


Enum Constant Summary
CLOSE
           
OPEN
           
 
Method Summary
static IndexMetaData.State fromId(byte id)
           
static IndexMetaData.State fromString(String state)
           
 byte id()
           
static IndexMetaData.State valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IndexMetaData.State[] 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, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OPEN

public static final IndexMetaData.State OPEN

CLOSE

public static final IndexMetaData.State CLOSE
Method Detail

values

public static IndexMetaData.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (IndexMetaData.State c : IndexMetaData.State.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IndexMetaData.State 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

id

public byte id()

fromId

public static IndexMetaData.State fromId(byte id)

fromString

public static IndexMetaData.State fromString(String state)


Copyright © 2009-2012. All Rights Reserved.