public static enum Trace.Existence extends Enum<Trace.Existence>
| Modifier and Type | Method and Description |
|---|---|
static Trace.Existence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trace.Existence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trace.Existence YES
public static final Trace.Existence NO
public static final Trace.Existence EXPIRED
public static Trace.Existence[] values()
for (Trace.Existence c : Trace.Existence.values()) System.out.println(c);
public static Trace.Existence 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.