Lines Matching defs:LongValue

30 public abstract class LongValue extends Category2Value
44 * Returns the negated value of this LongValue.
46 public abstract LongValue negate();
50 * Converts this LongValue to an IntegerValue.
55 * Converts this LongValue to a FloatValue.
60 * Converts this LongValue to a DoubleValue.
68 * Returns the generalization of this LongValue and the given other
69 * LongValue.
71 public LongValue generalize(LongValue other)
77 * Returns the sum of this LongValue and the given LongValue.
79 public LongValue add(LongValue other)
85 * Returns the difference of this LongValue and the given LongValue.
87 public LongValue subtract(LongValue other)
93 * Returns the difference of the given LongValue and this LongValue.
95 public LongValue subtractFrom(LongValue other)
101 * Returns the product of this LongValue and the given LongValue.
103 public LongValue multiply(LongValue other)
110 * Returns the quotient of this LongValue and the given LongValue.
112 public LongValue divide(LongValue other)
119 * Returns the quotient of the given LongValue and this LongValue.
121 public LongValue divideOf(LongValue other)
128 * Returns the remainder of this LongValue divided by the given
129 * LongValue.
131 public LongValue remainder(LongValue other)
138 * Returns the remainder of the given LongValue divided by this
139 * LongValue.
141 public LongValue remainderOf(LongValue other)
148 * Returns this LongValue, shifted left by the given IntegerValue.
150 public LongValue shiftLeft(IntegerValue other)
156 * Returns this LongValue, shifted right by the given IntegerValue.
158 public LongValue shiftRight(IntegerValue other)
164 * Returns this unsigned LongValue, shifted left by the given
167 public LongValue unsignedShiftRight(IntegerValue other)
173 * Returns the logical <i>and</i> of this LongValue and the given
174 * LongValue.
176 public LongValue and(LongValue other)
182 * Returns the logical <i>or</i> of this LongValue and the given
183 * LongValue.
185 public LongValue or(LongValue other)
191 * Returns the logical <i>xor</i> of this LongValue and the given
192 * LongValue.
194 public LongValue xor(LongValue other)
200 * Returns an IntegerValue with value -1, 0, or 1, if this LongValue is
201 * less than, equal to, or greater than the given LongValue, respectively.
203 public IntegerValue compare(LongValue other)
212 * Returns an IntegerValue with value 1, 0, or -1, if this LongValue is
213 * less than, equal to, or greater than the given LongValue, respectively.
215 public final IntegerValue compareReverse(LongValue other)
224 * Returns the generalization of this LongValue and the given other
227 public LongValue generalize(SpecificLongValue other)
234 * Returns the sum of this LongValue and the given SpecificLongValue.
236 public LongValue add(SpecificLongValue other)
242 * Returns the difference of this LongValue and the given SpecificLongValue.
244 public LongValue subtract(SpecificLongValue other)
250 * Returns the difference of the given SpecificLongValue and this LongValue.
252 public LongValue subtractFrom(SpecificLongValue other)
258 * Returns the product of this LongValue and the given SpecificLongValue.
260 public LongValue multiply(SpecificLongValue other)
266 * Returns the quotient of this LongValue and the given
269 public LongValue divide(SpecificLongValue other)
276 * LongValue.
278 public LongValue divideOf(SpecificLongValue other)
284 * Returns the remainder of this LongValue divided by the given
287 public LongValue remainder(SpecificLongValue other)
294 * LongValue.
296 public LongValue remainderOf(SpecificLongValue other)
302 * Returns this LongValue, shifted left by the given SpecificLongValue.
304 public LongValue shiftLeft(SpecificLongValue other)
310 * Returns this LongValue, shifted right by the given SpecificLongValue.
312 public LongValue shiftRight(SpecificLongValue other)
318 * Returns this unsigned LongValue, shifted right by the given
321 public LongValue unsignedShiftRight(SpecificLongValue other)
327 * Returns the logical <i>and</i> of this LongValue and the given
330 public LongValue and(SpecificLongValue other)
336 * Returns the logical <i>or</i> of this LongValue and the given
339 public LongValue or(SpecificLongValue other)
345 * Returns the logical <i>xor</i> of this LongValue and the given
348 public LongValue xor(SpecificLongValue other)
354 * Returns an IntegerValue with value -1, 0, or 1, if this LongValue is
367 * Returns an IntegerValue with value 1, 0, or -1, if this LongValue is
380 * Returns the generalization of this LongValue and the given other
383 public LongValue generalize(ParticularLongValue other)
390 * Returns the sum of this LongValue and the given ParticularLongValue.
392 public LongValue add(ParticularLongValue other)
398 * Returns the difference of this LongValue and the given ParticularLongValue.
400 public LongValue subtract(ParticularLongValue other)
406 * Returns the difference of the given ParticularLongValue and this LongValue.
408 public LongValue subtractFrom(ParticularLongValue other)
414 * Returns the product of this LongValue and the given ParticularLongValue.
416 public LongValue multiply(ParticularLongValue other)
422 * Returns the quotient of this LongValue and the given
425 public LongValue divide(ParticularLongValue other)
432 * LongValue.
434 public LongValue divideOf(ParticularLongValue other)
440 * Returns the remainder of this LongValue divided by the given
443 public LongValue remainder(ParticularLongValue other)
450 * LongValue.
452 public LongValue remainderOf(ParticularLongValue other)
458 * Returns this LongValue, shifted left by the given ParticularIntegerValue.
460 public LongValue shiftLeft(ParticularIntegerValue other)
466 * Returns this LongValue, shifted right by the given ParticularIntegerValue.
468 public LongValue shiftRight(ParticularIntegerValue other)
474 * Returns this unsigned LongValue, shifted right by the given
477 public LongValue unsignedShiftRight(ParticularIntegerValue other)
483 * Returns the logical <i>and</i> of this LongValue and the given
486 public LongValue and(ParticularLongValue other)
492 * Returns the logical <i>or</i> of this LongValue and the given
495 public LongValue or(ParticularLongValue other)
501 * Returns the logical <i>xor</i> of this LongValue and the given
504 public LongValue xor(ParticularLongValue other)
510 * Returns an IntegerValue with value -1, 0, or 1, if this LongValue is
523 * Returns an IntegerValue with value 1, 0, or -1, if this LongValue is
535 public final LongValue longValue()