public static enum Classification.MappedTo extends java.lang.Enum<Classification.MappedTo>
Concept
. Most natural
this would be the classification. However sometimes the classification is
just used as a stamp and do not contain any other data apart from its
concept. In such case we can actually map the bean to data inside the
concept.Enum Constant and Description |
---|
CLASSIFICATION_OBJECT
Map the property value to the classification object itself.
|
TARGET_CONCEPT
Map the property value to the concept referenced by the classification.
|
Modifier and Type | Method and Description |
---|---|
static Classification.MappedTo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Classification.MappedTo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Classification.MappedTo CLASSIFICATION_OBJECT
public static final Classification.MappedTo TARGET_CONCEPT
public static Classification.MappedTo[] values()
for (Classification.MappedTo c : Classification.MappedTo.values()) System.out.println(c);
public static Classification.MappedTo valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null