com.vaadin.collaborationengine.
Class ListChangeEvent
All Implemented Interfaces:
Event that is fired when the value in a collaboration list changes.
Since:
3.1
Author:
Vaadin Ltd
See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Method Summary
Modifier and TypeMethodDescriptiongetKey()
Gets the key of the list item affected by the change.
getNext()
Gets the key of the item which is after the current item after the change.
Gets the key of the item which was after the current item before the change.
Gets the key of the item which was before the current item before the change.
<T> T
getOldValue
(com.fasterxml.jackson.core.type.TypeReference<T> type) Gets the old value of the list item affected by the change as instance corresponding to the given type reference.
<T> T
getOldValue
(Class<T> type) Gets the old value of the list item affected by the change as instance of the given class.
getPrev()
Gets the key of the item which is before the current item after the change.
<T> T
getValue
(com.fasterxml.jackson.core.type.TypeReference<T> type) Gets the current value of the list item affected by the change as instance corresponding to the given type reference.
<T> T
Gets the current value of the list item affected by the change as instance of the given class.
Methods inherited from class java.util.EventObject
toString
-
Method Details
-
getSource
Overrides:
getSource
in classEventObject
-
getKey
Gets the key of the list item affected by the change.
Returns:
the key of the changed item, not
null
-
getValue
Gets the current value of the list item affected by the change as instance of the given class.
If the item was removed by the change, this method returns
null
andgetOldValue(Class)
return the removed item value.Type Parameters:
T
- the type of the value fromtype
parameter, e.g.String
Parameters:
type
- the expected type of the returned instanceReturns:
the current value of the item affected by the change
-
getValue
public <T> T getValue(com.fasterxml.jackson.core.type.TypeReference<T> type) Gets the current value of the list item affected by the change as instance corresponding to the given type reference.
If the item was removed by the change, this method returns
null
andgetOldValue(TypeReference)
return the removed item value.Type Parameters:
T
- the type reference of the value fromtype
parameter, e.g.List
Parameters:
type
- the expected type reference of the returned instanceReturns:
the current value of the item affected by the change
-
getOldValue
Gets the old value of the list item affected by the change as instance of the given class.
Type Parameters:
T
- the type of the value fromtype
parameter, e.g.String
Parameters:
type
- the expected type of the returned instanceReturns:
the old value of the item affected by the change
-
getOldValue
public <T> T getOldValue(com.fasterxml.jackson.core.type.TypeReference<T> type) Gets the old value of the list item affected by the change as instance corresponding to the given type reference.
Type Parameters:
T
- the type reference of the value fromtype
parameter, e.g.List
Parameters:
type
- the expected type reference of the returned instanceReturns:
the old value of the item affected by the change
-
getNext
Gets the key of the item which is after the current item after the change.
Returns:
the key of the item which is after the current item, or
null
if there is none -
getOldNext
Gets the key of the item which was after the current item before the change.
Returns:
the key of the item which was after the current item, or
null
if there was none -
getPrev
Gets the key of the item which is before the current item after the change.
Returns:
the key of the item which is before the current item, or
null
if there is none -
getOldPrev
Gets the key of the item which was before the current item before the change.
Returns:
the key of the item which was before the current item, or
null
if there was none
-