(Object obj)
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public boolean equals(Object obj) { |
| 52 | if (obj instanceof StreamName other) { |
| 53 | return other.column == column && other.kind == kind && |
| 54 | encryption == other.encryption; |
| 55 | } else { |
| 56 | return false; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | @Override |
| 61 | public int compareTo(@NotNull StreamName streamName) { |
no outgoing calls