-
- All Implemented Interfaces:
-
java.io.Serializable,javafx.beans.Observable,javafx.beans.property.Property,javafx.beans.property.ReadOnlyProperty,javafx.beans.property.ReadOnlyProperty,javafx.beans.value.ObservableBooleanValue,javafx.beans.value.ObservableValue,javafx.beans.value.ObservableValue,javafx.beans.value.WritableBooleanValue,javafx.beans.value.WritableValue,javafx.beans.value.WritableValue
public class SerializableBooleanProperty extends BooleanPropertyBase implements Serializable
javafx.beans.property.SimpleBooleanProperty that implements also Serializable.
-
-
Constructor Summary
Constructors Constructor Description SerializableBooleanProperty()The constructor of SimpleBooleanProperty.SerializableBooleanProperty(boolean initialValue)The constructor of SimpleBooleanProperty.SerializableBooleanProperty(String name)The constructor of SimpleBooleanProperty.SerializableBooleanProperty(String name, boolean initialValue)The constructor of SimpleBooleanProperty.
-
Method Summary
Modifier and Type Method Description StringgetName()Getter method for the name of the property. voidsetName(String name)Setter method for the name of the property. ObjectgetBean()Getter method for unused field bean. inthashCode()booleanequals(Object obj)static PropertyTypeAdapter<SerializableBooleanProperty>getTypeAdapter()Returns a com.google.gson.JsonSerializer and com.google.gson.JsonDeserializer combo class to be used as a TypeAdapterfor thisSerializableBooleanProperty.-
Methods inherited from class javafx.beans.property.BooleanPropertyBase
addListener, bind, get, isBound, removeListener, set, toString, unbind -
Methods inherited from class javafx.beans.property.BooleanProperty
asObject, bindBidirectional, booleanProperty, setValue, unbindBidirectional -
Methods inherited from class javafx.beans.property.ReadOnlyBooleanProperty
asObject, readOnlyBooleanProperty -
Methods inherited from class javafx.beans.binding.BooleanExpression
and, asObject, asString, booleanExpression, getValue, isEqualTo, isNotEqualTo, not, or -
Methods inherited from class javafx.beans.value.ObservableValue
getValue -
Methods inherited from class javafx.beans.property.ReadOnlyProperty
getName -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
SerializableBooleanProperty
SerializableBooleanProperty()
The constructor ofSimpleBooleanProperty.
-
SerializableBooleanProperty
SerializableBooleanProperty(boolean initialValue)
The constructor ofSimpleBooleanProperty.- Parameters:
initialValue- the initial value of the wrapped value
-
SerializableBooleanProperty
SerializableBooleanProperty(String name)
The constructor ofSimpleBooleanProperty.- Parameters:
name- the name of thisSimpleBooleanProperty
-
SerializableBooleanProperty
SerializableBooleanProperty(String name, boolean initialValue)
The constructor ofSimpleBooleanProperty.- Parameters:
name- the name of thisSimpleBooleanPropertyinitialValue- the initial value of the wrapped value
-
-
Method Detail
-
setName
void setName(String name)
Setter method for the name of the property.
- Parameters:
name- the name to set
-
hashCode
int hashCode()
-
getTypeAdapter
static PropertyTypeAdapter<SerializableBooleanProperty> getTypeAdapter()
Returns a com.google.gson.JsonSerializer and com.google.gson.JsonDeserializer combo class to be used as a
TypeAdapterfor thisSerializableBooleanProperty.
-
-
-
-