Class DocumentAttributeValue

    • 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 the isEmpty() 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.

      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object
      • equals

        public final boolean equals​(Object obj)
        Overrides:
        equals in class Object
      • 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.
        Overrides:
        toString in class Object
      • getValueForField

        public final <T> Optional<T> getValueForField​(String fieldName,
                                                      Class<T> clazz)
      • fromStringValue

        public static DocumentAttributeValue fromStringValue​(String stringValue)
        Create an instance of this class with stringValue() 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 with stringListValue() 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 with longValue() 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 with dateValue() 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.