de.dfki.mycbr.core.explanation
Enum Explainable
java.lang.Object
java.lang.Enum<Explainable>
de.dfki.mycbr.core.explanation.Explainable
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Explainable>
public enum Explainable
- extends java.lang.Enum<Explainable>
Concepts that can be explained using myCBR explanations.
- Author:
- myCBR Team
|
Method Summary |
static Explainable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Explainable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Concept
public static final Explainable Concept
AttributeDesc
public static final Explainable AttributeDesc
SimpleAttribute
public static final Explainable SimpleAttribute
Instance
public static final Explainable Instance
values
public static Explainable[] 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 (Explainable c : Explainable.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Explainable 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 name
java.lang.NullPointerException - if the argument is null