public enum BufferingMode extends java.lang.Enum<BufferingMode>
OWLReasoner.getBufferingMode()
.Enum Constant and Description |
---|
BUFFERING
Represents a mode where ontology changes are buffered inside an OWLReasoner.
|
NON_BUFFERING
Represents a mode where ontology changes are not buffered inside an OWLReasoner.
|
Modifier and Type | Method and Description |
---|---|
static BufferingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BufferingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BufferingMode BUFFERING
OWLReasoner.flush()
method.public static final BufferingMode NON_BUFFERING
public static BufferingMode[] values()
for (BufferingMode c : BufferingMode.values()) System.out.println(c);
public static BufferingMode 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