Package org.cdlib.mrt.zk
Enum Access.Queues
- java.lang.Object
-
- java.lang.Enum<Access.Queues>
-
- org.cdlib.mrt.zk.Access.Queues
-
- All Implemented Interfaces:
Serializable
,Comparable<Access.Queues>
- Enclosing class:
- Access
public static enum Access.Queues extends Enum<Access.Queues>
Access Assembly Queue names
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Access.Queues
valueOf(String name)
Returns the enum constant of this type with the specified name.static Access.Queues[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
small
public static final Access.Queues small
-
large
public static final Access.Queues large
-
-
Method Detail
-
values
public static Access.Queues[] 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 (Access.Queues c : Access.Queues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Access.Queues 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
-
-