public static enum TimeCounterLimit.TimeCounter extends Enum<TimeCounterLimit.TimeCounter>
| Enum Constant and Description |
|---|
ELAPSED_TIME |
EXECUTION_TIME |
| Modifier and Type | Method and Description |
|---|---|
static TimeCounterLimit.TimeCounter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeCounterLimit.TimeCounter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeCounterLimit.TimeCounter ELAPSED_TIME
public static final TimeCounterLimit.TimeCounter EXECUTION_TIME
public static TimeCounterLimit.TimeCounter[] values()
for (TimeCounterLimit.TimeCounter c : TimeCounterLimit.TimeCounter.values()) System.out.println(c);
public static TimeCounterLimit.TimeCounter 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 © 2019 The Apache Software Foundation. All Rights Reserved.