protected static enum PerformanceEvaluation.Counter extends Enum<PerformanceEvaluation.Counter>
| Enum Constant and Description | 
|---|
| ELAPSED_TIMEelapsed time | 
| ROWSnumber of rows | 
| Modifier and Type | Method and Description | 
|---|---|
| static PerformanceEvaluation.Counter | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PerformanceEvaluation.Counter[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PerformanceEvaluation.Counter ELAPSED_TIME
public static final PerformanceEvaluation.Counter ROWS
public static PerformanceEvaluation.Counter[] values()
for (PerformanceEvaluation.Counter c : PerformanceEvaluation.Counter.values()) System.out.println(c);
public static PerformanceEvaluation.Counter 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 © 2007–2020 The Apache Software Foundation. All rights reserved.