public static enum Dispatcher.Order extends Enum<Dispatcher.Order>
| Enum Constant and Description |
|---|
NORM
Normal.
|
OOB
Out-of-band, no capacity-controls.
|
OOB_CC
Out-of-band, capacity-controlled.
|
| Modifier and Type | Method and Description |
|---|---|
static Dispatcher.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dispatcher.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dispatcher.Order NORM
public static final Dispatcher.Order OOB_CC
public static final Dispatcher.Order OOB
public static Dispatcher.Order[] values()
for (Dispatcher.Order c : Dispatcher.Order.values()) System.out.println(c);
public static Dispatcher.Order 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 © 2022 LSST. All rights reserved.