com.atlassian.jira.index.ha
Enum ReplicatedIndexOperation.Operation

java.lang.Object
  extended by java.lang.Enum<ReplicatedIndexOperation.Operation>
      extended by com.atlassian.jira.index.ha.ReplicatedIndexOperation.Operation
All Implemented Interfaces:
Serializable, Comparable<ReplicatedIndexOperation.Operation>
Enclosing class:
ReplicatedIndexOperation

public static enum ReplicatedIndexOperation.Operation
extends Enum<ReplicatedIndexOperation.Operation>


Enum Constant Summary
BACKGROUND_REINDEX_END
           
BACKGROUND_REINDEX_START
           
CREATE
           
DELETE
           
FULL_REINDEX_END
           
FULL_REINDEX_START
           
PROJECT_REINDEX
           
UPDATE
           
 
Method Summary
static ReplicatedIndexOperation.Operation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReplicatedIndexOperation.Operation[] 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

UPDATE

public static final ReplicatedIndexOperation.Operation UPDATE

CREATE

public static final ReplicatedIndexOperation.Operation CREATE

DELETE

public static final ReplicatedIndexOperation.Operation DELETE

FULL_REINDEX_START

public static final ReplicatedIndexOperation.Operation FULL_REINDEX_START

FULL_REINDEX_END

public static final ReplicatedIndexOperation.Operation FULL_REINDEX_END

BACKGROUND_REINDEX_START

public static final ReplicatedIndexOperation.Operation BACKGROUND_REINDEX_START

BACKGROUND_REINDEX_END

public static final ReplicatedIndexOperation.Operation BACKGROUND_REINDEX_END

PROJECT_REINDEX

public static final ReplicatedIndexOperation.Operation PROJECT_REINDEX
Method Detail

values

public static ReplicatedIndexOperation.Operation[] 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 (ReplicatedIndexOperation.Operation c : ReplicatedIndexOperation.Operation.values())
    System.out.println(c);

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

valueOf

public static ReplicatedIndexOperation.Operation 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


Copyright © 2002-2014 Atlassian. All Rights Reserved.