SimpleAttributeHolder
Inheritors
Functions
Retrieves an attribute with the given key. If no attribute with the given key exists, an exception is thrown.
Retrieves an attribute with the given key. If no attribute with the given key exists, the default value is returned.
Retrieves an attribute with the given key. If no attribute with the given key exists, null is returned.
Returns a map of all attributes that are associated with a key which can be modified.
Retrieves an attribute with the given key and casts it to the given type. If the attribute is not of the given type, a ClassCastException is thrown. If no attribute with the given key exists, an exception is thrown.
Retrieves an attribute with the given key and casts it to the given type. If the attribute is not of the given type, a ClassCastException is thrown. If no attribute with the given key exists, the default value is returned.
Retrieves an attribute with the given key and casts it to the given type. If the attribute is not of the given type, a ClassCastException is thrown. If no attribute with the given key exists, null is returned.
Whether this cell has an attribute with the given key.
Removes an attribute with the given key. If no attribute with the given key exists, null is returned; otherwise the previous value that was associated with the key is returned.
Sets an attribute with the given key to the given value. If an attribute with the same key already exists, it will be overwritten.