public enum OntologyCopy extends Enum<OntologyCopy>
| Enum Constant and Description |
|---|
DEEP
the ontology copy will create a new OWLOntology instance with same
ontology annotations, same ID and same axioms.
|
MOVE
the ontology copy will remove the ontology from the previous manager.
|
SHALLOW
the ontology copy will create a new OWLOntology instance with same
ontology annotations, same ID and same axioms.
|
| Modifier and Type | Method and Description |
|---|---|
static OntologyCopy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OntologyCopy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OntologyCopy SHALLOW
public static final OntologyCopy DEEP
public static final OntologyCopy MOVE
public static OntologyCopy[] values()
for (OntologyCopy c : OntologyCopy.values()) System.out.println(c);
public static OntologyCopy 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.