Package 

Interface DateRangeCue.CustomAttributes

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Double getDouble(@NonNull() String key) The Double value from the CustomAttribute list.
      abstract String getString(String key) The textual value from the CustomAttribute list.
      abstract Array<byte> getBytes(String key) The byte[] value from the CustomAttribute list.
      abstract Map<String, Object> asMap() The CustomAttribute list as a Map.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • getDouble

        @Nullable() abstract Double getDouble(@NonNull() String key)

        The Double value from the CustomAttribute list.

        • When the value for the provided key is not present, the method returns null.
        Parameters:
        key - The key of the Double attribute.
      • getString

        @Nullable() abstract String getString(String key)

        The textual value from the CustomAttribute list.

        • When the value for the provided key is not present, the method returns null.
        Parameters:
        key - The key of the String attribute.
      • getBytes

         abstract Array<byte> getBytes(String key)

        The byte[] value from the CustomAttribute list.

        • When the value for the provided key is not present, the method returns null.
        Parameters:
        key - The key of the byte[] attribute.