Class LongProperty
- java.lang.Object
-
- org.openstreetmap.josm.data.preferences.AbstractProperty<T>
-
- org.openstreetmap.josm.data.preferences.AbstractToStringProperty<java.lang.Long>
-
- org.openstreetmap.josm.data.preferences.LongProperty
-
public class LongProperty extends AbstractToStringProperty<java.lang.Long>
A property containing anLongvalue.- Since:
- 10087
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.openstreetmap.josm.data.preferences.AbstractToStringProperty
AbstractToStringProperty.ChildProperty<T>
-
Nested classes/interfaces inherited from class org.openstreetmap.josm.data.preferences.AbstractProperty
AbstractProperty.InvalidPreferenceValueException, AbstractProperty.ValueChangeEvent<T>, AbstractProperty.ValueChangeListener<T>
-
-
Field Summary
-
Fields inherited from class org.openstreetmap.josm.data.preferences.AbstractProperty
defaultValue, key, preferences
-
-
Constructor Summary
Constructors Constructor Description LongProperty(java.lang.String key, long defaultValue)Constructs a newLongProperty
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.LongfromString(java.lang.String string)Converts the string to an object of the given type.java.lang.Longget()Replies the value of this property.booleanput(java.lang.Long value)Sets this property to the specified value.protected java.lang.StringtoString(java.lang.Long t)Converts the string to an object of the given type.-
Methods inherited from class org.openstreetmap.josm.data.preferences.AbstractToStringProperty
getAsString, getChildProperty, getSpecialized
-
Methods inherited from class org.openstreetmap.josm.data.preferences.AbstractProperty
addListener, addListenerImpl, addWeakListener, cached, equals, getDefaultValue, getKey, getPreferences, hashCode, isSet, remove, removeListener, removeListenerImpl, storeDefaultValue
-
-
-
-
Constructor Detail
-
LongProperty
public LongProperty(java.lang.String key, long defaultValue)
Constructs a newLongProperty- Parameters:
key- property keydefaultValue- default value
-
-
Method Detail
-
get
public java.lang.Long get()
Description copied from class:AbstractPropertyReplies the value of this property.- Overrides:
getin classAbstractToStringProperty<java.lang.Long>- Returns:
- the value of this property
-
put
public boolean put(java.lang.Long value)
Description copied from class:AbstractPropertySets this property to the specified value.- Overrides:
putin classAbstractToStringProperty<java.lang.Long>- Parameters:
value- The new value of this property- Returns:
- true if something has changed (i.e. value is different than before)
-
fromString
protected java.lang.Long fromString(java.lang.String string)
Description copied from class:AbstractToStringPropertyConverts the string to an object of the given type.- Specified by:
fromStringin classAbstractToStringProperty<java.lang.Long>- Parameters:
string- The string- Returns:
- The object.
-
toString
protected java.lang.String toString(java.lang.Long t)
Description copied from class:AbstractToStringPropertyConverts the string to an object of the given type.- Specified by:
toStringin classAbstractToStringProperty<java.lang.Long>- Parameters:
t- The object.- Returns:
- The string representing the object
-
-