-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum DoubleRepresentation extends Enum<DoubleRepresentation>
Representation possibilities for Double, because SharedPreferences don't have
getDoubleorputDoublemethods.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLOATDouble will be encoded as and decoded from Float. Note, that precision will be lost.
LONG_BITSDouble will be encoded as and decoded from Long using Double.toBits and Double.Companion.fromBits
STRINGDouble will be encoded as and decoded from String using Double.toString and String.toDouble
-
Method Summary
Modifier and Type Method Description final DoubleRepresentationvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<DoubleRepresentation>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final DoubleRepresentation 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<DoubleRepresentation> 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.
-
-
-
-