public static enum ITrace.Kind extends Enum<ITrace.Kind>
Enum Constant and Description |
---|
account |
acl |
cache |
error |
group |
none |
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns the string value of this enum
|
static ITrace.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ITrace.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ITrace.Kind none
public static final ITrace.Kind group
public static final ITrace.Kind account
public static final ITrace.Kind acl
public static final ITrace.Kind cache
public static final ITrace.Kind error
public static ITrace.Kind[] values()
for (ITrace.Kind c : ITrace.Kind.values()) System.out.println(c);
public static ITrace.Kind 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 nullpublic String getValue()