Package Torello.Browser.BrowserAPI
Class BluetoothEmulation.CharacteristicProperties
- java.lang.Object
-
- Torello.Browser.BaseType<BluetoothEmulation.CharacteristicProperties>
-
- Torello.Browser.BrowserAPI.BluetoothEmulation.CharacteristicProperties
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BaseType<?>>
- Enclosing class:
- BluetoothEmulation
public static class BluetoothEmulation.CharacteristicProperties extends BaseType<BluetoothEmulation.CharacteristicProperties> implements java.io.Serializable
This Nested Java Class is declared as a "Type", which is similar to a Java Class. The CDP API Specifications list this type among the types, events & commands located in theBluetoothEmulationdomain, which may be found within theBrowserAPI.
📌 All browser domain type classes will have a class name that begins with an upper case letter.Describes the properties of a characteristic. This follows Bluetooth Core Specification BT 4.2 Vol 3 Part G 3.3.1. Characteristic Properties.- See Also:
- Serialized Form
Hi-Lited Source-Code:This File's Source Code:
- View Here: Torello/Browser/BrowserAPI/BluetoothEmulation.java
- Open New Browser-Tab: Torello/Browser/BrowserAPI/BluetoothEmulation.java
File Size: 3,818 Bytes Line Count: 97 '\n' Characters Found
Helper: Equals, HashCode, toJSON, etc
- View Here: BluetoothEmulation$$CharacteristicProperties$$.java
- Open New Browser-Tab: BluetoothEmulation$$CharacteristicProperties$$.java
File Size: 12,334 Bytes Line Count: 269 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field Description protected static longserialVersionUIDType Fields / Properties (from Google & Browser Specs) Modifier and Type Field Description BooleanauthenticatedSignedWrites[No Description Provided by Google]Booleanbroadcast[No Description Provided by Google]BooleanextendedProperties[No Description Provided by Google]Booleanindicate[No Description Provided by Google]Booleannotify[No Description Provided by Google]Booleanread[No Description Provided by Google]Booleanwrite[No Description Provided by Google]BooleanwriteWithoutResponse[No Description Provided by Google]
-
Constructor Summary
Constructors Constructor Description CharacteristicProperties(ReadOnlyList<Boolean> isPresent, Boolean broadcast, Boolean read, Boolean writeWithoutResponse, Boolean write, Boolean notify, Boolean indicate, Boolean authenticatedSignedWrites, Boolean extendedProperties)Constructor.
-
Method Summary
Static Builder Convert a JsonObject to a POJO Modifier and Type Method Description static BluetoothEmulation.CharacteristicPropertiesfromJSON(JsonObject jo)Creates an instance of this class from aJsonObject.Retrieve the Type-Descriptor Singleton-Instance for this Nested Class. Modifier and Type Method Description static NestedDescriptor<BluetoothEmulation.CharacteristicProperties>descriptor()Returns this class'sNestedDescriptorsingleton-instance.-
Methods inherited from class Torello.Browser.BaseType
allEnumStrROLs, compareTo, enumStrList, enumStrValidate, enumStrValidateThrow, equals, hashCode, isPresent, optionalsValidate, optionalsValidateThrow, toJSON, toString
-
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.- See Also:
- Constant Field Values
-
broadcast
public final java.lang.Boolean broadcast
[No Description Provided by Google]
OPTIONAL
-
read
public final java.lang.Boolean read
[No Description Provided by Google]
OPTIONAL
-
writeWithoutResponse
public final java.lang.Boolean writeWithoutResponse
[No Description Provided by Google]
OPTIONAL
-
write
public final java.lang.Boolean write
[No Description Provided by Google]
OPTIONAL
-
notify
public final java.lang.Boolean notify
[No Description Provided by Google]
OPTIONAL
-
indicate
public final java.lang.Boolean indicate
[No Description Provided by Google]
OPTIONAL
-
authenticatedSignedWrites
public final java.lang.Boolean authenticatedSignedWrites
[No Description Provided by Google]
OPTIONAL
-
extendedProperties
public final java.lang.Boolean extendedProperties
[No Description Provided by Google]
OPTIONAL
-
-
Constructor Detail
-
CharacteristicProperties
public CharacteristicProperties (ReadOnlyList<java.lang.Boolean> isPresent, java.lang.Boolean broadcast, java.lang.Boolean read, java.lang.Boolean writeWithoutResponse, java.lang.Boolean write, java.lang.Boolean notify, java.lang.Boolean indicate, java.lang.Boolean authenticatedSignedWrites, java.lang.Boolean extendedProperties)
Constructor. Please review this class' fields for documentation.
-
-
Method Detail
-
fromJSON
public static BluetoothEmulation.CharacteristicProperties fromJSON (JsonObject jo)
Creates an instance of this class from aJsonObject.- Code:
- Exact Method Body:
return singleton.fromJSON(jo);
-
descriptor
public static NestedDescriptor<BluetoothEmulation.CharacteristicProperties> descriptor ()
Returns this class'sNestedDescriptorsingleton-instance. class / type.- Code:
- Exact Method Body:
return singleton.descriptor();
-
-