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