Class ATimeseriesAttribute<O>
- java.lang.Object
-
- ai.libs.jaicore.ml.core.dataset.schema.attribute.AAttribute
-
- ai.libs.jaicore.ml.core.dataset.schema.attribute.AGenericObjectAttribute<org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseries<O>>
-
- ai.libs.jaicore.ml.classification.singlelabel.timeseries.dataset.attribute.ATimeseriesAttribute<O>
-
- Type Parameters:
O- Type of the representation of a timeseries.
- All Implemented Interfaces:
java.io.Serializable,org.api4.java.ai.ml.core.dataset.schema.attribute.IAttribute,org.api4.java.ai.ml.core.dataset.schema.attribute.INumericEncodingAttribute,org.api4.java.ai.ml.core.dataset.schema.attribute.IObjectAttribute<org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseries<O>>,org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseriesAttribute<O>
- Direct Known Subclasses:
NDArrayTimeseriesAttribute
public abstract class ATimeseriesAttribute<O> extends AGenericObjectAttribute<org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseries<O>> implements org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseriesAttribute<O>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedATimeseriesAttribute(java.lang.String name, int length)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)intgetLength()Get the length of this time series attribute type.inthashCode()voidsetLength(int length)-
Methods inherited from class ai.libs.jaicore.ml.core.dataset.schema.attribute.AGenericObjectAttribute
decodeValue, encodeValue, getAsAttributeValue, getValueAsTypeInstance
-
Methods inherited from class ai.libs.jaicore.ml.core.dataset.schema.attribute.AAttribute
getName
-
-
-
-
Method Detail
-
getLength
public int getLength()
Get the length of this time series attribute type.- Returns:
- The length respec. the number of datapoints of this time series attribute.
-
setLength
public void setLength(int length)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAGenericObjectAttribute<org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseries<O>>
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classAGenericObjectAttribute<org.api4.java.ai.ml.core.dataset.schema.attribute.ITimeseries<O>>
-
-