in src/main/java/org/apache/sling/graphql/api/pagination/Cursor.java [55:64]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if(!(obj instanceof Cursor)) {
return false;
}
final Cursor other = (Cursor)obj;
return Objects.equals(rawValue, other.rawValue) && Objects.equals(encoded, other.encoded);
}