com.vaadin.flow.data.value.
Interface HasValueChangeMode
-
All Superinterfaces:
All Known Implementing Classes:
public interface HasValueChangeMode extends Serializable
An interface, denoting that the component is able to change the way its value on the client side is synchronized with the server side.
A class implementing this interface should typically also implement
HasValue
even though this is not required on the API level.Since:
1.0.
Author:
Vaadin Ltd
See Also:
-
-
Method Summary
All Methods Modifier and Type Method and Description ValueChangeMode
getValueChangeMode()
Gets current value change mode of the component.
void
setValueChangeMode(ValueChangeMode valueChangeMode)
Sets new value change mode for the component.
-
-
-
Method Detail
-
getValueChangeMode
ValueChangeMode getValueChangeMode()
Gets current value change mode of the component.
Returns:
current value change mode of the component, or
null
if the value is not synchronized
-
setValueChangeMode
void setValueChangeMode(ValueChangeMode valueChangeMode)
Sets new value change mode for the component.
Parameters:
valueChangeMode
- new value change mode, ornull
to disable the value synchronization
-
-