public enum DebugEnum extends Enum<DebugEnum>
| Enum Constant and Description |
|---|
FILTER
Allows fine control over printing of debug messages associated with
filtering operations.
|
NONE
Unknown value.
|
SCHEMA
Allows fine control over printing of debug messages associated with schema
loading operations.
|
| Modifier and Type | Method and Description |
|---|---|
static DebugEnum |
get(int code)
Returns the enum value of the specified int or null if it's not valid.
|
static DebugEnum |
get(String str)
Returns a value for this enum or throws an exception if the String value isn't
a valid member of this enum.
|
int |
intValue()
Returns the value of this enum value as an int.
|
static DebugEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugEnum NONE
public static final DebugEnum FILTER
public static final DebugEnum SCHEMA
public static DebugEnum[] values()
for (DebugEnum c : DebugEnum.values()) System.out.println(c);
public static DebugEnum 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 int intValue()
public static DebugEnum get(int code)
Copyright © 2023. All rights reserved.