Skip to content

Instantly share code, notes, and snippets.

@pablomatiasgomez
Created June 19, 2015 19:58
Show Gist options
  • Save pablomatiasgomez/d0fbe83a0585e09ce1b7 to your computer and use it in GitHub Desktop.
Save pablomatiasgomez/d0fbe83a0585e09ce1b7 to your computer and use it in GitHub Desktop.
Amazing how getValue() trhows java.lang.NullPointerException if value is null
public class DoubleContainer {
private Double value;
public Double getValue() {
return (this.value != null ? Math.ceil(this.value) : this.value);
}
public void setValue(Double value) {
this.value = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment