public enum CounterName extends Enum<CounterName>
| Enum Constant and Description |
|---|
GSPdelete |
GSPdeleteBad |
GSPdeleteGood |
GSPget |
GSPgetBad |
GSPgetGood |
GSPhead |
GSPheadBad |
GSPheadGood |
GSPoptions |
GSPoptionsBad |
GSPoptionsGood |
GSPpatch |
GSPpatchBad |
GSPpatchGood |
GSPpost |
GSPpostBad |
GSPpostGood |
GSPput |
GSPputBad |
GSPputGood |
QueryExecErrors |
QueryTimeouts |
Requests |
RequestsBad |
RequestsGood |
UpdateExecErrors |
| Modifier and Type | Method and Description |
|---|---|
static CounterName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CounterName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CounterName Requests
public static final CounterName RequestsGood
public static final CounterName RequestsBad
public static final CounterName QueryTimeouts
public static final CounterName QueryExecErrors
public static final CounterName UpdateExecErrors
public static final CounterName GSPget
public static final CounterName GSPgetGood
public static final CounterName GSPgetBad
public static final CounterName GSPpost
public static final CounterName GSPpostGood
public static final CounterName GSPpostBad
public static final CounterName GSPdelete
public static final CounterName GSPdeleteGood
public static final CounterName GSPdeleteBad
public static final CounterName GSPput
public static final CounterName GSPputGood
public static final CounterName GSPputBad
public static final CounterName GSPhead
public static final CounterName GSPheadGood
public static final CounterName GSPheadBad
public static final CounterName GSPpatch
public static final CounterName GSPpatchGood
public static final CounterName GSPpatchBad
public static final CounterName GSPoptions
public static final CounterName GSPoptionsGood
public static final CounterName GSPoptionsBad
public static CounterName[] values()
for (CounterName c : CounterName.values()) System.out.println(c);
public static CounterName 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 nullLicenced under the Apache License, Version 2.0