Blame view
circus/templates/CircusIntegerClass.vm
1.74 KB
8d0dc533f
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
$package public class CircusInteger extends Type { public static final int MIN_VALUE = -10; public static final int MAX_VALUE = 10; public CircusInteger(int value) { super.setValue(value); } public CircusInteger(String st) { super.setValue(Integer.parseInt(st)); } public String toString() { return this.getValue() + ""; } public CircusInteger add(CircusInteger other) { return new CircusInteger(this.getValue() + other.getValue()); } public CircusInteger sub(CircusInteger other) { return new CircusInteger(this.getValue() - other.getValue()); } public CircusInteger mult(CircusInteger other) { return new CircusInteger(this.getValue() * other.getValue()); } public CircusInteger div(CircusInteger other) { return new CircusInteger(this.getValue() / other.getValue()); } public CircusInteger mod(CircusInteger other) { return new CircusInteger(this.getValue() % other.getValue()); } public CircusInteger negate() { return new CircusInteger(-this.getValue()); } public boolean lessEqual(CircusInteger other) { return this.getValue() <= other.getValue(); } public boolean greaterEqual(CircusInteger other) { return this.getValue() >= other.getValue(); } public boolean less(CircusInteger other) { return this.getValue() < other.getValue(); } public boolean greater(CircusInteger other) { return this.getValue() > other.getValue(); } public boolean equals(CircusInteger other) { return this.getValue() == other.getValue(); } } |