public static enum OntologyProvider.Status extends Enum<OntologyProvider.Status>
OntologyProvider.| Enum Constant and Description |
|---|
MATCH
A non-null ontology object can be obtained by querying the ontology provider for this entry.
|
NO_MATCH
No such entry is registered as either a primary key or an alias in the ontology provider.
|
ORPHAN
The entry is registered and assigned a graph name, but the corresponding graph cannot be found.
|
UNCHARTED
The entry is registered but not assigned a graph.
|
| Modifier and Type | Method and Description |
|---|---|
static OntologyProvider.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OntologyProvider.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OntologyProvider.Status MATCH
public static final OntologyProvider.Status NO_MATCH
public static final OntologyProvider.Status ORPHAN
public static final OntologyProvider.Status UNCHARTED
public static OntologyProvider.Status[] values()
for (OntologyProvider.Status c : OntologyProvider.Status.values()) System.out.println(c);
public static OntologyProvider.Status 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.