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.
        Returns:

        The Double value, specified by the key. (Nullable)

      • 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.
        Returns:

        The String value, specified by the key. (Nullable)

      • 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.
        Returns:

        The byte[] value, specified by the key.

      • asMap

        @Nullable() abstract Map<String, Object> asMap()

        The CustomAttribute list as a Map.

        Returns:

        The Map with the CustomAttributes. (Nullable)