Class IntegerCharacteristic
- java.lang.Object
-
- io.github.hapjava.characteristics.impl.base.BaseCharacteristic<java.lang.Integer>
-
- io.github.hapjava.characteristics.impl.base.IntegerCharacteristic
-
- All Implemented Interfaces:
Characteristic
,EventableCharacteristic
- Direct Known Subclasses:
ActiveIdentifierCharacteristic
,AirPlayEnableCharacteristic
,BatteryLevelCharacteristic
,BrightnessCharacteristic
,ColorTemperatureCharacteristic
,CurrentHorizontalTiltAngleCharacteristic
,CurrentPositionCharacteristic
,CurrentTiltAngleCharacteristic
,CurrentVerticalTiltAngleCharacteristic
,IdentifierCharacteristic
,RemainingDurationCharacteristic
,ResetFilterIndicationCharacteristic
,ServiceLabelIndexCharacteristic
,SetDurationCharacteristic
,TargetHorizontalTiltAngleCharacteristic
,TargetPositionCharacteristic
,TargetTiltAngleCharacteristic
,TargetVerticalTiltAngleCharacteristic
,VolumeCharacteristic
public abstract class IntegerCharacteristic extends BaseCharacteristic<java.lang.Integer>
A characteristic that provides an Integer data type.- Author:
- Andy Lintner
-
-
Constructor Summary
Constructors Constructor Description IntegerCharacteristic(java.lang.String type, java.lang.String description, int minValue, int maxValue, java.lang.String unit, java.util.Optional<java.util.function.Supplier<java.util.concurrent.CompletableFuture<java.lang.Integer>>> getter, java.util.Optional<ExceptionalConsumer<java.lang.Integer>> setter, java.util.Optional<java.util.function.Consumer<HomekitCharacteristicChangeCallback>> subscriber, java.util.Optional<java.lang.Runnable> unsubscriber)
Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Integer
convert(javax.json.JsonValue jsonValue)
Converts from the JSON value to a Java object of the type Tjava.lang.Integer
getDefault()
Supplies a default value for the characteristic to send to connected clients when the real value.java.util.concurrent.CompletableFuture<java.lang.Integer>
getValue()
Retrieves the current value of the characteristic.protected java.util.concurrent.CompletableFuture<javax.json.JsonObjectBuilder>
makeBuilder(int iid)
Creates the JSON serialized form of the accessory for use over the HomeKit Accessory Protocol.void
setValue(java.lang.Integer value)
Update the characteristic value using a new value supplied by the connected client.-
Methods inherited from class io.github.hapjava.characteristics.impl.base.BaseCharacteristic
getType, setJsonValue, setValue, subscribe, supplyValue, toJson, unsubscribe
-
-
-
-
Constructor Detail
-
IntegerCharacteristic
public IntegerCharacteristic(java.lang.String type, java.lang.String description, int minValue, int maxValue, java.lang.String unit, java.util.Optional<java.util.function.Supplier<java.util.concurrent.CompletableFuture<java.lang.Integer>>> getter, java.util.Optional<ExceptionalConsumer<java.lang.Integer>> setter, java.util.Optional<java.util.function.Consumer<HomekitCharacteristicChangeCallback>> subscriber, java.util.Optional<java.lang.Runnable> unsubscriber)
Default constructor- Parameters:
type
- a string containing a UUID that indicates the type of characteristic. Apple defines a set of these, however implementors can create their own as well.description
- a description of the characteristic to be passed to the consuming device.minValue
- the minimum supported value.maxValue
- the maximum supported valueunit
- a description of the unit this characteristic supports.getter
- getter for valuesetter
- setter for valuesubscriber
- subscribers to changesunsubscriber
- unsubscribers to changes
-
-
Method Detail
-
makeBuilder
protected java.util.concurrent.CompletableFuture<javax.json.JsonObjectBuilder> makeBuilder(int iid)
Creates the JSON serialized form of the accessory for use over the HomeKit Accessory Protocol.- Overrides:
makeBuilder
in classBaseCharacteristic<java.lang.Integer>
- Parameters:
iid
- the static id of the accessory.- Returns:
- a future that will complete with the JSON builder for the object.
-
getValue
public java.util.concurrent.CompletableFuture<java.lang.Integer> getValue()
Description copied from class:BaseCharacteristic
Retrieves the current value of the characteristic.- Specified by:
getValue
in classBaseCharacteristic<java.lang.Integer>
- Returns:
- a future that will complete with the current value.
-
setValue
public void setValue(java.lang.Integer value) throws java.lang.Exception
Description copied from class:BaseCharacteristic
Update the characteristic value using a new value supplied by the connected client.- Specified by:
setValue
in classBaseCharacteristic<java.lang.Integer>
- Parameters:
value
- the new value to set.- Throws:
java.lang.Exception
- if the value cannot be set.
-
getDefault
public java.lang.Integer getDefault()
Supplies a default value for the characteristic to send to connected clients when the real value. cannot be retrieved.- Specified by:
getDefault
in classBaseCharacteristic<java.lang.Integer>
- Returns:
- a sensible default value.
-
convert
protected java.lang.Integer convert(javax.json.JsonValue jsonValue)
Converts from the JSON value to a Java object of the type T- Specified by:
convert
in classBaseCharacteristic<java.lang.Integer>
- Parameters:
jsonValue
- the JSON value to convert from.- Returns:
- the converted Java object.
-
-