Interface DateRangeCue.CustomAttributes
-
- All Implemented Interfaces:
public interface DateRangeCue.CustomAttributes
-
-
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. -
-
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
@Nullable() 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. (Nullable)
-
-
-
-