Package ubic.basecode.ontology.providers
Enum OntologyService.InferenceMode
java.lang.Object
java.lang.Enum<OntologyService.InferenceMode>
ubic.basecode.ontology.providers.OntologyService.InferenceMode
- All Implemented Interfaces:
Serializable
,Comparable<OntologyService.InferenceMode>
- Enclosing interface:
OntologyService
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionComplete inference.Very limited inference.Limited inference.No inference is supported, only the axioms defined in the ontology are considered.Only basic inference is supported forrdfs:subClassOf
andrdfs:subPropertyOf
. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static OntologyService.InferenceMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
No inference is supported, only the axioms defined in the ontology are considered. -
TRANSITIVE
Only basic inference is supported forrdfs:subClassOf
andrdfs:subPropertyOf
.This is the fastest inference mode.
-
MICRO
Very limited inference. -
MINI
Limited inference. -
FULL
Complete inference.This is the slowest inference mode.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-