Class Aggregates
- java.lang.Object
-
- software.amazon.awssdk.services.iotsitewise.model.Aggregates
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<Aggregates.Builder,Aggregates>
@Generated("software.amazon.awssdk:codegen") public final class Aggregates extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Aggregates.Builder,Aggregates>
Contains the (pre-calculated) aggregate values for an asset property.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAggregates.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Doubleaverage()The average (mean) value of the time series over a time interval window.static Aggregates.Builderbuilder()Doublecount()The count of data points in the time series over a time interval window.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Doublemaximum()The maximum value of the time series over a time interval window.Doubleminimum()The minimum value of the time series over a time interval window.List<SdkField<?>>sdkFields()static Class<? extends Aggregates.Builder>serializableBuilderClass()DoublestandardDeviation()The standard deviation of the time series over a time interval window.Doublesum()The sum of the time series over a time interval window.Aggregates.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
average
public final Double average()
The average (mean) value of the time series over a time interval window.
- Returns:
- The average (mean) value of the time series over a time interval window.
-
count
public final Double count()
The count of data points in the time series over a time interval window.
- Returns:
- The count of data points in the time series over a time interval window.
-
maximum
public final Double maximum()
The maximum value of the time series over a time interval window.
- Returns:
- The maximum value of the time series over a time interval window.
-
minimum
public final Double minimum()
The minimum value of the time series over a time interval window.
- Returns:
- The minimum value of the time series over a time interval window.
-
sum
public final Double sum()
The sum of the time series over a time interval window.
- Returns:
- The sum of the time series over a time interval window.
-
standardDeviation
public final Double standardDeviation()
The standard deviation of the time series over a time interval window.
- Returns:
- The standard deviation of the time series over a time interval window.
-
toBuilder
public Aggregates.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<Aggregates.Builder,Aggregates>
-
builder
public static Aggregates.Builder builder()
-
serializableBuilderClass
public static Class<? extends Aggregates.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-