Class CategoricalAttributeValue
- java.lang.Object
-
- ai.libs.jaicore.ml.core.dataset.attribute.AAttributeValue<java.lang.String>
-
- ai.libs.jaicore.ml.core.dataset.attribute.categorical.CategoricalAttributeValue
-
- All Implemented Interfaces:
IAttributeValue<java.lang.String>,java.io.Serializable
public class CategoricalAttributeValue extends AAttributeValue<java.lang.String>
Categorical attribute value as it can be part of an instance.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CategoricalAttributeValue(ICategoricalAttributeType type)Standard c'tor.CategoricalAttributeValue(ICategoricalAttributeType type, java.lang.String value)C'tor setting the value of this attribute as well.
-
-
-
Constructor Detail
-
CategoricalAttributeValue
public CategoricalAttributeValue(ICategoricalAttributeType type)
Standard c'tor.- Parameters:
type- The type defining the domain of this categorical attribute.
-
CategoricalAttributeValue
public CategoricalAttributeValue(ICategoricalAttributeType type, java.lang.String value)
C'tor setting the value of this attribute as well.- Parameters:
type- The type defining the domain of this categorical attribute.value- The value which this attribute takes.
-
-