public static enum Configuration.TableauMonitorType extends Enum<Configuration.TableauMonitorType>
| Enum Constant and Description |
|---|
DEBUGGER_HISTORY_ON
This opens a debugging application for HermiT.
|
DEBUGGER_NO_HISTORY
This opens a debugging application for HermiT.
|
NONE
The standard setting is no monitor, i.e., no information is recorded and printed about what the reasoner does.
|
TIMING
The TIMING tableau monitor print information about the tableau (number of nodes etc) in certain time intervals.
|
TIMING_WITH_PAUSE
Waits at certain points (e.g., before building a tableau) for a keystroke by the user and is apart from that like
TIMING.
|
| Modifier and Type | Method and Description |
|---|---|
static Configuration.TableauMonitorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.TableauMonitorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.TableauMonitorType NONE
public static final Configuration.TableauMonitorType TIMING
public static final Configuration.TableauMonitorType TIMING_WITH_PAUSE
public static final Configuration.TableauMonitorType DEBUGGER_NO_HISTORY
public static final Configuration.TableauMonitorType DEBUGGER_HISTORY_ON
public static Configuration.TableauMonitorType[] values()
for (Configuration.TableauMonitorType c : Configuration.TableauMonitorType.values()) System.out.println(c);
public static Configuration.TableauMonitorType 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 © 2017. All Rights Reserved.