getPropertyAsIntWithDefault abstract method

int getPropertyAsIntWithDefault(
  1. String key,
  2. int value
)

Get a property as an integer. If the property is not set, the given default value is returned. @param key The property key. @param value The default value to use if the property does not exist. @return The property value interpreted as an integer, or the default value. @see #setProperty

Implementation

int getPropertyAsIntWithDefault(String key, int value);