Skip to content

Instantly share code, notes, and snippets.

@okram
Created April 29, 2014 15:38
Show Gist options
  • Save okram/11403950 to your computer and use it in GitHub Desktop.
Save okram/11403950 to your computer and use it in GitHub Desktop.
public default <V> V getValue(final String key, final V orElse) {
final Property<V> property = this.getProperty(key);
return property.orElse(orElse);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment