Enum Constant and Description |
---|
DO_NOT_CHECK
This mode determines that the QoS limits will be neither checked nor incremented.
|
CHECK_ONLY
This mode determines that the QoS limits should be only checked and the statistic counters should not be incremented.
|
INCREMENT_AND_CHECK
This mode determines that the QoS increments the statistics counters and checks for limit exceed.
|
Modifier and Type | Method and Description |
---|---|
static QoSMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QoSMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (QoSMode c : QoSMode.values()) System.out.println(c);
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null