Class DocumentAttributeValue
- java.lang.Object
-
- software.amazon.awssdk.services.qapps.model.DocumentAttributeValue
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<DocumentAttributeValue.Builder,DocumentAttributeValue>
@Generated("software.amazon.awssdk:codegen") public final class DocumentAttributeValue extends Object implements SdkPojo, Serializable, ToCopyableBuilder<DocumentAttributeValue.Builder,DocumentAttributeValue>
The value of a document attribute. You can only provide one value for a document attribute.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceDocumentAttributeValue.Builderstatic classDocumentAttributeValue.Type
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentAttributeValue.Builderbuilder()InstantdateValue()A date expressed as an ISO 8601 string.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)static DocumentAttributeValuefromDateValue(Instant dateValue)Create an instance of this class withdateValue()initialized to the given value.static DocumentAttributeValuefromLongValue(Long longValue)Create an instance of this class withlongValue()initialized to the given value.static DocumentAttributeValuefromStringListValue(List<String> stringListValue)Create an instance of this class withstringListValue()initialized to the given value.static DocumentAttributeValuefromStringValue(String stringValue)Create an instance of this class withstringValue()initialized to the given value.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()booleanhasStringListValue()For responses, this returns true if the service returned a value for the StringListValue property.LonglongValue()A long integer value.List<SdkField<?>>sdkFields()static Class<? extends DocumentAttributeValue.Builder>serializableBuilderClass()List<String>stringListValue()A list of strings.StringstringValue()A string.DocumentAttributeValue.BuildertoBuilder()StringtoString()Returns a string representation of this object.DocumentAttributeValue.Typetype()Retrieve an enum value representing which member of this object is populated.-
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
-
stringValue
public final String stringValue()
A string.
- Returns:
- A string.
-
hasStringListValue
public final boolean hasStringListValue()
For responses, this returns true if the service returned a value for the StringListValue property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
stringListValue
public final List<String> stringListValue()
A list of strings.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasStringListValue()method.- Returns:
- A list of strings.
-
longValue
public final Long longValue()
A long integer value.
- Returns:
- A long integer value.
-
dateValue
public final Instant dateValue()
A date expressed as an ISO 8601 string.
It's important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
- Returns:
- A date expressed as an ISO 8601 string.
It's important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
-
toBuilder
public DocumentAttributeValue.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<DocumentAttributeValue.Builder,DocumentAttributeValue>
-
builder
public static DocumentAttributeValue.Builder builder()
-
serializableBuilderClass
public static Class<? extends DocumentAttributeValue.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.
-
fromStringValue
public static DocumentAttributeValue fromStringValue(String stringValue)
Create an instance of this class withstringValue()initialized to the given value.A string.
- Parameters:
stringValue- A string.
-
fromStringListValue
public static DocumentAttributeValue fromStringListValue(List<String> stringListValue)
Create an instance of this class withstringListValue()initialized to the given value.A list of strings.
- Parameters:
stringListValue- A list of strings.
-
fromLongValue
public static DocumentAttributeValue fromLongValue(Long longValue)
Create an instance of this class withlongValue()initialized to the given value.A long integer value.
- Parameters:
longValue- A long integer value.
-
fromDateValue
public static DocumentAttributeValue fromDateValue(Instant dateValue)
Create an instance of this class withdateValue()initialized to the given value.A date expressed as an ISO 8601 string.
It's important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
- Parameters:
dateValue- A date expressed as an ISO 8601 string.It's important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.
-
type
public DocumentAttributeValue.Type type()
Retrieve an enum value representing which member of this object is populated. When this class is returned in a service response, this will beDocumentAttributeValue.Type.UNKNOWN_TO_SDK_VERSIONif the service returned a member that is only known to a newer SDK version. When this class is created directly in your code, this will beDocumentAttributeValue.Type.UNKNOWN_TO_SDK_VERSIONif zero members are set, andnullif more than one member is set.
-
-