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