All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.services.iot.model.AssetPropertyValue Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Iot Service module holds the client classes that are used for communicating with AWS IoT Service

There is a newer version: 2.28.4
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.iot.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* An asset property value entry containing the following information. *

*/ @Generated("software.amazon.awssdk:codegen") public final class AssetPropertyValue implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField VALUE_FIELD = SdkField . builder(MarshallingType.SDK_POJO).getter(getter(AssetPropertyValue::value)) .setter(setter(Builder::value)).constructor(AssetPropertyVariant::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("value").build()).build(); private static final SdkField TIMESTAMP_FIELD = SdkField . builder(MarshallingType.SDK_POJO).getter(getter(AssetPropertyValue::timestamp)) .setter(setter(Builder::timestamp)).constructor(AssetPropertyTimestamp::builder) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("timestamp").build()).build(); private static final SdkField QUALITY_FIELD = SdkField. builder(MarshallingType.STRING) .getter(getter(AssetPropertyValue::quality)).setter(setter(Builder::quality)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("quality").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(VALUE_FIELD, TIMESTAMP_FIELD, QUALITY_FIELD)); private static final long serialVersionUID = 1L; private final AssetPropertyVariant value; private final AssetPropertyTimestamp timestamp; private final String quality; private AssetPropertyValue(BuilderImpl builder) { this.value = builder.value; this.timestamp = builder.timestamp; this.quality = builder.quality; } /** *

* The value of the asset property. *

* * @return The value of the asset property. */ public AssetPropertyVariant value() { return value; } /** *

* The asset property value timestamp. *

* * @return The asset property value timestamp. */ public AssetPropertyTimestamp timestamp() { return timestamp; } /** *

* Optional. A string that describes the quality of the value. Accepts substitution templates. Must be * GOOD, BAD, or UNCERTAIN. *

* * @return Optional. A string that describes the quality of the value. Accepts substitution templates. Must be * GOOD, BAD, or UNCERTAIN. */ public String quality() { return quality; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(value()); hashCode = 31 * hashCode + Objects.hashCode(timestamp()); hashCode = 31 * hashCode + Objects.hashCode(quality()); return hashCode; } @Override public boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof AssetPropertyValue)) { return false; } AssetPropertyValue other = (AssetPropertyValue) obj; return Objects.equals(value(), other.value()) && Objects.equals(timestamp(), other.timestamp()) && Objects.equals(quality(), other.quality()); } /** * 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. */ @Override public String toString() { return ToString.builder("AssetPropertyValue").add("Value", value()).add("Timestamp", timestamp()) .add("Quality", quality()).build(); } public Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "value": return Optional.ofNullable(clazz.cast(value())); case "timestamp": return Optional.ofNullable(clazz.cast(timestamp())); case "quality": return Optional.ofNullable(clazz.cast(quality())); default: return Optional.empty(); } } @Override public List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((AssetPropertyValue) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The value of the asset property. *

* * @param value * The value of the asset property. * @return Returns a reference to this object so that method calls can be chained together. */ Builder value(AssetPropertyVariant value); /** *

* The value of the asset property. *

* This is a convenience that creates an instance of the {@link AssetPropertyVariant.Builder} avoiding the need * to create one manually via {@link AssetPropertyVariant#builder()}. * * When the {@link Consumer} completes, {@link AssetPropertyVariant.Builder#build()} is called immediately and * its result is passed to {@link #value(AssetPropertyVariant)}. * * @param value * a consumer that will call methods on {@link AssetPropertyVariant.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #value(AssetPropertyVariant) */ default Builder value(Consumer value) { return value(AssetPropertyVariant.builder().applyMutation(value).build()); } /** *

* The asset property value timestamp. *

* * @param timestamp * The asset property value timestamp. * @return Returns a reference to this object so that method calls can be chained together. */ Builder timestamp(AssetPropertyTimestamp timestamp); /** *

* The asset property value timestamp. *

* This is a convenience that creates an instance of the {@link AssetPropertyTimestamp.Builder} avoiding the * need to create one manually via {@link AssetPropertyTimestamp#builder()}. * * When the {@link Consumer} completes, {@link AssetPropertyTimestamp.Builder#build()} is called immediately and * its result is passed to {@link #timestamp(AssetPropertyTimestamp)}. * * @param timestamp * a consumer that will call methods on {@link AssetPropertyTimestamp.Builder} * @return Returns a reference to this object so that method calls can be chained together. * @see #timestamp(AssetPropertyTimestamp) */ default Builder timestamp(Consumer timestamp) { return timestamp(AssetPropertyTimestamp.builder().applyMutation(timestamp).build()); } /** *

* Optional. A string that describes the quality of the value. Accepts substitution templates. Must be * GOOD, BAD, or UNCERTAIN. *

* * @param quality * Optional. A string that describes the quality of the value. Accepts substitution templates. Must be * GOOD, BAD, or UNCERTAIN. * @return Returns a reference to this object so that method calls can be chained together. */ Builder quality(String quality); } static final class BuilderImpl implements Builder { private AssetPropertyVariant value; private AssetPropertyTimestamp timestamp; private String quality; private BuilderImpl() { } private BuilderImpl(AssetPropertyValue model) { value(model.value); timestamp(model.timestamp); quality(model.quality); } public final AssetPropertyVariant.Builder getValue() { return value != null ? value.toBuilder() : null; } @Override public final Builder value(AssetPropertyVariant value) { this.value = value; return this; } public final void setValue(AssetPropertyVariant.BuilderImpl value) { this.value = value != null ? value.build() : null; } public final AssetPropertyTimestamp.Builder getTimestamp() { return timestamp != null ? timestamp.toBuilder() : null; } @Override public final Builder timestamp(AssetPropertyTimestamp timestamp) { this.timestamp = timestamp; return this; } public final void setTimestamp(AssetPropertyTimestamp.BuilderImpl timestamp) { this.timestamp = timestamp != null ? timestamp.build() : null; } public final String getQuality() { return quality; } @Override public final Builder quality(String quality) { this.quality = quality; return this; } public final void setQuality(String quality) { this.quality = quality; } @Override public AssetPropertyValue build() { return new AssetPropertyValue(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy