public enum BufferingMode extends 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(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(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 © 2020 The University of Manchester. All rights reserved.