Class IntegerKey


  • public class IntegerKey
    extends TypedPreferenceKey<java.lang.Integer>
    A representation of an integer valued preference.
    Since:
    2.26
    • Constructor Summary

      Constructors 
      Constructor Description
      IntegerKey​(java.lang.String id, java.lang.Integer defaultValue)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString​(java.lang.Integer value)
      Convert the given value to its string representation.
      java.lang.Integer toValue​(java.lang.String string)
      Convert the given string to its type-safe value.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • IntegerKey

        public IntegerKey​(java.lang.String id,
                          java.lang.Integer defaultValue)
    • Method Detail

      • toString

        public java.lang.String toString​(java.lang.Integer value)
        Description copied from class: TypedPreferenceKey
        Convert the given value to its string representation. A null value is converted to a null string.
        Specified by:
        toString in class TypedPreferenceKey<java.lang.Integer>
      • toValue

        public java.lang.Integer toValue​(java.lang.String string)
        Description copied from class: TypedPreferenceKey
        Convert the given string to its type-safe value. The null string is converted to the null value.
        Specified by:
        toValue in class TypedPreferenceKey<java.lang.Integer>