18192021222324252627
} @Override public final boolean equals(final Object thatValue) { if (thatValue instanceof Size) { final Size that = (Size) thatValue; return this.compareTo(that) == 0; } return false; }
858687888990919293949596
} @Override public Size size() { final Size s = ValueConverter.size(size); if(s.isNull()) { return Size.ZERO; } return s; }
19202122232425262728
22232425262728293031