public static enum TraceQueryBase.StringComparator extends Enum<TraceQueryBase.StringComparator>
| Enum Constant and Description |
|---|
BEGINS |
CONTAINS |
ENDS |
EQUALS |
NOT_CONTAINS |
| Modifier and Type | Method and Description |
|---|---|
static TraceQueryBase.StringComparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceQueryBase.StringComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceQueryBase.StringComparator BEGINS
public static final TraceQueryBase.StringComparator EQUALS
public static final TraceQueryBase.StringComparator ENDS
public static final TraceQueryBase.StringComparator CONTAINS
public static final TraceQueryBase.StringComparator NOT_CONTAINS
public static TraceQueryBase.StringComparator[] values()
for (TraceQueryBase.StringComparator c : TraceQueryBase.StringComparator.values()) System.out.println(c);
public static TraceQueryBase.StringComparator 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 © 2011–2015 Glowroot contributors. All rights reserved.