public static enum Debug.Level extends java.lang.Enum<Debug.Level>
| Enum Constant and Description |
|---|
CONDITIONS
Information about evaluation of conditions of rules is logged
|
RULES
Information about rules that are processed during inference process is logged
|
SILENT
No information is logged
|
TABLES
Information about tables that are processed during inference processed is logged
|
VERBOS
All information is logged.
|
WARNING
No matter what level was set, the warnings are always printed.
|
| Modifier and Type | Method and Description |
|---|---|
static Debug.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Debug.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Debug.Level SILENT
public static final Debug.Level TABLES
public static final Debug.Level RULES
public static final Debug.Level CONDITIONS
public static final Debug.Level VERBOS
public static final Debug.Level WARNING
public static Debug.Level[] values()
for (Debug.Level c : Debug.Level.values()) System.out.println(c);
public static Debug.Level valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null