Enum AdvertiseMode
- All Implemented Interfaces:
Comparable<AdvertiseMode>
Advertising-interval trade-off, mirroring Android's advertise modes.
Platforms without the control (iOS) treat it as a hint.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe default balance.Short advertising interval for the fastest discovery; highest power draw.Long advertising interval; lowest power, slowest discovery by centrals. -
Method Summary
Modifier and TypeMethodDescriptionstatic AdvertiseModeReturns the enum constant of this type with the specified name.static AdvertiseMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class Enum
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOf
-
Enum Constant Details
-
LOW_POWER
Long advertising interval; lowest power, slowest discovery by centrals. -
BALANCED
The default balance. -
LOW_LATENCY
Short advertising interval for the fastest discovery; highest power draw.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-