Enum PolarBleRecoveryAction
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum PolarBleRecoveryAction extends Enum<PolarBleRecoveryAction>
Recovery category for a disconnect.
RETRY_OPERATION and RETRY_CONNECTION do not mean that arbitrary application operations are replayed by the SDK. Applications must wait for the next deviceConnected callback before retrying, and must not blindly replay non-idempotent writes.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<PolarBleRecoveryAction>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description NONERETRY_OPERATIONRETRY_CONNECTIONREMOVE_PAIRING_AND_PAIR_AGAINRETRY_PAIRING
-
Method Summary
Modifier and Type Method Description final PolarBleRecoveryActionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<PolarBleRecoveryAction>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<PolarBleRecoveryAction>getEntries()Recovery category for a disconnect. -
-
Method Detail
-
valueOf
final PolarBleRecoveryAction valueOf(String value)
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.)
-
values
final Array<PolarBleRecoveryAction> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<PolarBleRecoveryAction> getEntries()
Recovery category for a disconnect.
RETRY_OPERATION and RETRY_CONNECTION do not mean that arbitrary application operations are replayed by the SDK. Applications must wait for the next deviceConnected callback before retrying, and must not blindly replay non-idempotent writes.
-
-
-
-