Interface IAttributeValue<D>
-
- Type Parameters:
D- The type of an attribute value.
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AAttributeValue,BooleanAttributeValue,CategoricalAttributeValue,MultiValueAttributeValue,NumericAttributeValue,TimeSeriesAttributeValue
public interface IAttributeValue<D> extends java.io.SerializableA general interface for attribute values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAttributeType<D>getType()DgetValue()voidsetValue(D value)
-
-
-
Method Detail
-
getValue
D getValue()
- Returns:
- The value of this attribute value.
-
setValue
void setValue(D value)
- Parameters:
value- The value of this attribute value.
-
getType
IAttributeType<D> getType()
- Returns:
- The type of this attribute value.
-
-