Home | History | Annotate | Download | only in value

Lines Matching defs:floatValue

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