Home | History | Annotate | Download | only in value

Lines Matching refs:doubleValue

24  * This DoubleValue represents a double value that is negated.
30 private final DoubleValue doubleValue;
36 public NegatedDoubleValue(DoubleValue doubleValue)
38 this.doubleValue = doubleValue;
42 // Implementations of unary methods of DoubleValue.
44 public DoubleValue negate()
46 return doubleValue;
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
63 doubleValue.hashCode();
69 return "-"+doubleValue;