Package org.voltdb.task
Enum Class TaskScope
- All Implemented Interfaces:
Serializable
,Comparable<TaskScope>
,Constable
Enum to represent the different scopes in which a
Task
can run-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic TaskScope
fromId
(byte id) static TaskScope
Convert the name of a scope to aTaskScope
instance in a case insensitive way.byte
getId()
static String
translateIdToName
(byte id) Convert a scope ID to the name of that scopestatic TaskScope
Returns the enum constant of this class with the specified name.static TaskScope[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
DATABASE
-
HOSTS
-
PARTITIONS
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromId
- Parameters:
id
- of aTaskScope
- Returns:
- Instance of
TaskScope
id
references - Throws:
IllegalArgumentException
- Ifid
is not a valid ID
-
fromName
Convert the name of a scope to aTaskScope
instance in a case insensitive way. Ifname
isnull
return the default scope,DATABASE
- Parameters:
name
- of scope ornull
- Returns:
- Instance of
TaskScope
- Throws:
IllegalArgumentException
- Ifname
is not a valid scope
-
translateIdToName
Convert a scope ID to the name of that scope- Parameters:
id
- of aTaskScope
- Returns:
- Name of scope
id
references - Throws:
IllegalArgumentException
- Ifid
is not a valid ID
-
getId
public byte getId()- Returns:
- The ID of this scope
-