static enum SimpleQueryProfiler.QueryInfo extends java.lang.Enum<SimpleQueryProfiler.QueryInfo>
| Enum Constant and Description |
|---|
CACHE_HITS
Represent the number of cache hits done by each query
|
CACHE_MISSES
Represent the number of cache misses done by each query
|
HYDRATE_TOTAL_TIME
Represent the number nano-seconds spent to hydrate
|
ROWS_COUNT
Represent the number of rows extracted from a result set
|
| Modifier and Type | Method and Description |
|---|---|
static SimpleQueryProfiler.QueryInfo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimpleQueryProfiler.QueryInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleQueryProfiler.QueryInfo ROWS_COUNT
public static final SimpleQueryProfiler.QueryInfo CACHE_HITS
public static final SimpleQueryProfiler.QueryInfo CACHE_MISSES
public static final SimpleQueryProfiler.QueryInfo HYDRATE_TOTAL_TIME
public static SimpleQueryProfiler.QueryInfo[] values()
for (SimpleQueryProfiler.QueryInfo c : SimpleQueryProfiler.QueryInfo.values()) System.out.println(c);
public static SimpleQueryProfiler.QueryInfo valueOf(java.lang.String name)
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