public enum ImportManagementPolicy extends Enum<ImportManagementPolicy>
| Enum Constant and Description |
|---|
FLATTEN
The root ontology contains all the import statements that point to (recursively) imported ontologies,
which instead are cleared of all import statements.
|
MERGE
Remove all import statements from the root ontology's import closure, and recursively copy all the
axioms from imported ontologies into the root one.
|
PRESERVE
Keep the import structure as it is.
|
| Modifier and Type | Method and Description |
|---|---|
static ImportManagementPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportManagementPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportManagementPolicy FLATTEN
public static final ImportManagementPolicy MERGE
public static final ImportManagementPolicy PRESERVE
public static ImportManagementPolicy[] values()
for (ImportManagementPolicy c : ImportManagementPolicy.values()) System.out.println(c);
public static ImportManagementPolicy 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 © 2010-2014 The Apache Software Foundation. All Rights Reserved.