Package org.apache.solr.common.params
Enum CollectionParams.LockLevel
- java.lang.Object
-
- java.lang.Enum<CollectionParams.LockLevel>
-
- org.apache.solr.common.params.CollectionParams.LockLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<CollectionParams.LockLevel>
- Enclosing interface:
- CollectionParams
public static enum CollectionParams.LockLevel extends Enum<CollectionParams.LockLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLUSTER
COLLECTION
NONE
REPLICA
SHARD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CollectionParams.LockLevel
getChild()
int
getHeight()
boolean
isHigherOrEqual(CollectionParams.LockLevel that)
static CollectionParams.LockLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static CollectionParams.LockLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CollectionParams.LockLevel NONE
-
REPLICA
public static final CollectionParams.LockLevel REPLICA
-
SHARD
public static final CollectionParams.LockLevel SHARD
-
COLLECTION
public static final CollectionParams.LockLevel COLLECTION
-
CLUSTER
public static final CollectionParams.LockLevel CLUSTER
-
-
Method Detail
-
values
public static CollectionParams.LockLevel[] 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 (CollectionParams.LockLevel c : CollectionParams.LockLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollectionParams.LockLevel 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 nameNullPointerException
- if the argument is null
-
getChild
public CollectionParams.LockLevel getChild()
-
getHeight
public int getHeight()
-
isHigherOrEqual
public boolean isHigherOrEqual(CollectionParams.LockLevel that)
-
-