Home | History | Annotate | Download | only in value

Lines Matching defs:longValue

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