java.lang.Object
io.qt.internal.QtJambiObject
io.qt.QtObject
io.qt.core.QUntypedBindable
io.qt.core.QByteBindable
- All Implemented Interfaces:
QtObjectInterface
,Cloneable
public final class QByteBindable extends QUntypedBindable
QByteBindable is primitive-typed version of QBindable<Byte>.
- See Also:
QBindable
-
Nested Class Summary
-
Constructor Summary
Constructors Constructor Description QByteBindable()
Creates a newbyte
-typed invalid bindable.QByteBindable(QByteProperty property)
Creates a new bindable from provided property.QByteBindable(QObject.QByteProperty property)
Creates a new bindable from provided property.QByteBindable(QObject.QComputedByteProperty property)
Creates a new bindable from provided property.QByteBindable(QObject.QComputedProperty<@QtPrimitiveType Byte> property)
Creates a new bindable from provided property.QByteBindable(QObject.QProperty<@QtPrimitiveType Byte> property)
Creates a new bindable from provided property.QByteBindable(QProperty<@QtPrimitiveType Byte> property)
Creates a new bindable from provided property.QByteBindable(QUntypedBindable other)
Creates a copy of the provided bindable. -
Method Summary
Modifier and Type Method Description QBytePropertyBinding
binding()
Returns the binding expression that is associated with the underlying property.QBytePropertyBinding
makeBinding()
Creates a binding to the underlying property.QBytePropertyBinding
setBinding(QBytePropertyBinding binding)
QBytePropertyBinding
setBinding(QPropertyBinding<@QtPrimitiveType Byte> binding)
QBytePropertyBinding
setBinding(QtUtilities.ByteSupplier functor)
void
setValue(byte value)
Assigns newValue to the underlying property and removes the property's associated binding, if present.QBytePropertyBinding
takeBinding()
Disassociates the binding expression from this property and returns it.byte
value()
Returns the value of the underlying property.Methods inherited from class io.qt.core.QUntypedBindable
clone, data, hasBinding, iface, isBindable, isValid, observe, onValueChanged, setBinding, setData, setIface, subscribe
-
Constructor Details
-
QByteBindable
public QByteBindable()Creates a newbyte
-typed invalid bindable. -
QByteBindable
Creates a copy of the provided bindable. If the type of the other bindable is notbyte
it remains invalid.- Parameters:
other
-
-
QByteBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QByteBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QByteBindable
Creates a new bindable from provided property.- Parameters:
property
-
-
QByteBindable
Creates a new bindable from provided property. If the type of the property is notbyte
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
QByteBindable
Creates a new bindable from provided property. If the type of the property is notbyte
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
QByteBindable
Creates a new bindable from provided property. If the type of the property is notbyte
anIllegalArgumentException
is thrown.- Parameters:
property
-
-
-
Method Details
-
makeBinding
Creates a binding to the underlying property.- Overrides:
makeBinding
in classQUntypedBindable
-
binding
Returns the binding expression that is associated with the underlying property. A default constructedQBytePropertyBinding
will be returned if no such association exists.- Overrides:
binding
in classQUntypedBindable
- Returns:
- binding
-
setBinding
-
setBinding
@QtUninvokable public QBytePropertyBinding setBinding(QPropertyBinding<@QtPrimitiveType Byte> binding) -
setBinding
-
takeBinding
Disassociates the binding expression from this property and returns it.
After calling this function, the value of the property will only change if you assign a new value to it, or when a new binding is set.
- Returns:
- the removed binding
-
value
Returns the value of the underlying property. This may evaluate a binding expression that is tied to the property, before returning the value.- Returns:
- value
-
setValue
Assigns newValue to the underlying property and removes the property's associated binding, if present.
- Parameters:
newValue
-
-