18192021222324252627
} @Override public final boolean equals(final Object thatValue) { if (thatValue instanceof Decimal) { final Decimal that = (Decimal) thatValue; return this.compareTo(that) == 0; } return false; }
20212223242526272829
27282930313233343536
// } @Override public final boolean equals(final Object thatValue) { if (thatValue instanceof Decimal) { final Decimal that = (Decimal) thatValue; return this.compareTo(that) == 0; } return false; }