Package org.cdlib.mrt.zk
Enum QueueItem.ZkPaths
- java.lang.Object
-
- java.lang.Enum<QueueItem.ZkPaths>
-
- org.cdlib.mrt.zk.QueueItem.ZkPaths
-
- All Implemented Interfaces:
Serializable
,Comparable<QueueItem.ZkPaths>
- Enclosing class:
- QueueItem
public static enum QueueItem.ZkPaths extends Enum<QueueItem.ZkPaths>
Standardized path names for Merritt Zookeeper nodes
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Access
AccessLarge
AccessSmall
Batch
BatchUuids
Job
JobStates
Locks
LocksCollections
LocksInventory
LocksQueue
LocksQueueAccessLarge
LocksQueueAccessSmall
LocksQueueIngest
LocksStorage
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QueueItem.ZkPaths
valueOf(String name)
Returns the enum constant of this type with the specified name.static QueueItem.ZkPaths[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Access
public static final QueueItem.ZkPaths Access
-
AccessSmall
public static final QueueItem.ZkPaths AccessSmall
-
AccessLarge
public static final QueueItem.ZkPaths AccessLarge
-
Batch
public static final QueueItem.ZkPaths Batch
-
BatchUuids
public static final QueueItem.ZkPaths BatchUuids
-
Job
public static final QueueItem.ZkPaths Job
-
JobStates
public static final QueueItem.ZkPaths JobStates
-
Locks
public static final QueueItem.ZkPaths Locks
-
LocksQueue
public static final QueueItem.ZkPaths LocksQueue
-
LocksQueueIngest
public static final QueueItem.ZkPaths LocksQueueIngest
-
LocksQueueAccessSmall
public static final QueueItem.ZkPaths LocksQueueAccessSmall
-
LocksQueueAccessLarge
public static final QueueItem.ZkPaths LocksQueueAccessLarge
-
LocksStorage
public static final QueueItem.ZkPaths LocksStorage
-
LocksInventory
public static final QueueItem.ZkPaths LocksInventory
-
LocksCollections
public static final QueueItem.ZkPaths LocksCollections
-
-
Field Detail
-
path
public String path
-
-
Method Detail
-
values
public static QueueItem.ZkPaths[] 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 (QueueItem.ZkPaths c : QueueItem.ZkPaths.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueueItem.ZkPaths 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
-
-