public enum Task extends Enum<Task>
Enum Constant and Description |
---|
BROKERING |
DEPLOYER |
DMS |
MONITORING |
NONE |
QOS |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Task |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Task[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Task NONE
public static final Task MONITORING
public static final Task QOS
public static final Task BROKERING
public static final Task DMS
public static final Task DEPLOYER
public static final Task UNKNOWN
public static Task[] values()
for (Task c : Task.values()) System.out.println(c);
public static Task valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2023 I.N.F.N.. All rights reserved.