◆ equals()
boolean org.turro.financials.pos.CashRegisterPK.equals |
( |
Object |
obj | ) |
|
Definition at line 46 of file CashRegisterPK.java.
53 if (getClass() != obj.getClass()) {
56 final CashRegisterPK other = (CashRegisterPK) obj;
57 if (this.pos != other.pos) {
60 if (!Objects.equals(
this.contract, other.contract)) {
63 return Objects.equals(this.registerDate, other.registerDate);
◆ hashCode()
int org.turro.financials.pos.CashRegisterPK.hashCode |
( |
| ) |
|
Definition at line 37 of file CashRegisterPK.java.
39 hash = 79 * hash + Objects.hashCode(this.contract);
40 hash = 79 * hash + this.pos;
41 hash = 79 * hash + Objects.hashCode(this.registerDate);
The documentation for this class was generated from the following file: