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