MCPcopy Create free account
hub / github.com/ebean-orm/ebean / equals

Method equals

ebean-api/src/main/java/io/ebean/OrderBy.java:212–222  ·  view source on GitHub ↗
(Object obj)

Source from the content-addressed store, hash-verified

210 }
211
212 @Override
213 public boolean equals(Object obj) {
214 if (obj == this) {
215 return true;
216 }
217 if (!(obj instanceof OrderBy<?>)) {
218 return false;
219 }
220 OrderBy<?> e = (OrderBy<?>) obj;
221 return e.list.equals(list);
222 }
223
224 /**
225 * Return a hash value for this OrderBy. This can be to determine logical

Callers 15

splitDocumentsMethod · 0.45
parseRedisDocumentMethod · 0.45
onMessageMethod · 0.45
processL2MessageMethod · 0.45
clearMethod · 0.45
parseModeMethod · 0.45
findSpanMethod · 0.45
addEventMethod · 0.45
getAnnotationMethod · 0.45
langShortTypeMethod · 0.45

Calls

no outgoing calls