Package openllet.core.taxonomy
Enum TaxonomyUtils.TaxonomyKey
- java.lang.Object
-
- java.lang.Enum<TaxonomyUtils.TaxonomyKey>
-
- openllet.core.taxonomy.TaxonomyUtils.TaxonomyKey
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TaxonomyUtils.TaxonomyKey>
- Enclosing class:
- TaxonomyUtils
public static enum TaxonomyUtils.TaxonomyKey extends java.lang.Enum<TaxonomyUtils.TaxonomyKey>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCES_KEYSUPER_EXPLANATION_KEY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaxonomyUtils.TaxonomyKeyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TaxonomyUtils.TaxonomyKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCES_KEY
public static final TaxonomyUtils.TaxonomyKey INSTANCES_KEY
-
SUPER_EXPLANATION_KEY
public static final TaxonomyUtils.TaxonomyKey SUPER_EXPLANATION_KEY
-
-
Method Detail
-
values
public static TaxonomyUtils.TaxonomyKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TaxonomyUtils.TaxonomyKey c : TaxonomyUtils.TaxonomyKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaxonomyUtils.TaxonomyKey valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-