Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
10,500 | void (int x) { this.x = x; } | setX |
10,501 | void (int y) { this.y = y; } | setY |
10,502 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof DataAndSuperBuilder)) return false; final DataAndSuperBuilder other = (DataAndSuperBuilder) o; if (!other.canEqual((Object) this)) return false; if (this.getX() != other.getX()) return false; if (this.getY() != other.getY()) return false; return true; } | equals |
10,503 | boolean (final Object other) { return other instanceof DataAndSuperBuilder; } | canEqual |
10,504 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); result = result * PRIME + this.getY(); return result; } | hashCode |
10,505 | String () { return "DataAndSuperBuilder(x=" + this.getX() + ", y=" + this.getY() + ")"; } | toString |
10,506 | B (int x) { this.x = x; return self(); } | x |
10,507 | B (int y) { this.y = y; return self(); } | y |
10,508 | String () { return "DataAndSuperBuilder.DataAndSuperBuilderBuilder(x=" + this.x + ", y=" + this.y + ")"; } | toString |
10,509 | DataAndSuperBuilder () { return new DataAndSuperBuilder(this); } | build |
10,510 | int () { return this.someInt; } | getSomeInt |
10,511 | String () { return this.someString; } | getSomeString |
10,512 | Date () { return this.someDate; } | getSomeDate |
10,513 | void (int someInt) { this.someInt = someInt; } | setSomeInt |
10,514 | void (String someString) { this.someString = someString; } | setSomeString |
10,515 | void (Date someDate) { this.someDate = someDate; } | setSomeDate |
10,516 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof DataExtendsRecursive)) return false; final DataExtendsRecursive other = (DataExtendsRecursive) o; if (!other.canEqual((Object) this)) return false; if (this.getSomeInt() != other.getSomeInt()) return false; final Object this$someString = this.getSomeString(); final Object other$someString = other.getSomeString(); if (this$someString == null ? other$someString != null : !this$someString.equals(other$someString)) return false; final Object this$someDate = this.getSomeDate(); final Object other$someDate = other.getSomeDate(); if (this$someDate == null ? other$someDate != null : !this$someDate.equals(other$someDate)) return false; return true; } | equals |
10,517 | boolean (final Object other) { return other instanceof DataExtendsRecursive; } | canEqual |
10,518 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getSomeInt(); final Object $someString = this.getSomeString(); result = result * PRIME + ($someString == null ? 43 : $someString.hashCode()); final Object $someDate = this.getSomeDate(); result = result * PRIME + ($someDate == null ? 43 : $someDate.hashCode()); return result; } | hashCode |
10,519 | String () { return "DataExtendsRecursive(someInt=" + this.getSomeInt() + ", someString=" + this.getSomeString() + ", someDate=" + this.getSomeDate() + ")"; } | toString |
10,520 | DataAndBuilderBuilder () { return new DataAndBuilderBuilder(); } | builder |
10,521 | int () { return this.x; } | getX |
10,522 | int () { return this.y; } | getY |
10,523 | void (int x) { this.x = x; } | setX |
10,524 | void (int y) { this.y = y; } | setY |
10,525 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof DataAndBuilder)) return false; final DataAndBuilder other = (DataAndBuilder) o; if (!other.canEqual((Object) this)) return false; if (this.getX() != other.getX()) return false; if (this.getY() != other.getY()) return false; return true; } | equals |
10,526 | boolean (final Object other) { return other instanceof DataAndBuilder; } | canEqual |
10,527 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); result = result * PRIME + this.getY(); return result; } | hashCode |
10,528 | String () { return "DataAndBuilder(x=" + this.getX() + ", y=" + this.getY() + ")"; } | toString |
10,529 | DataAndBuilder () { return new DataAndBuilder(x, y); } | build |
10,530 | String () { return "DataAndBuilder.DataAndBuilderBuilder(x=" + this.x + ", y=" + this.y + ")"; } | toString |
10,531 | String () { return this.someField; } | getSomeField |
10,532 | int () { return this.x; } | getX |
10,533 | void (final int x) { this.x = x; } | setX |
10,534 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof DataExtended)) return false; final DataExtended other = (DataExtended) o; if (!other.canEqual((java.lang.Object) this)) return false; if (this.getX() != other.getX()) return false; return true; } | equals |
10,535 | boolean (final java.lang.Object other) { return other instanceof DataExtended; } | canEqual |
10,536 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); return result; } | hashCode |
10,537 | void (String[] args) { final DataStaticConstructor2 test = new DataStaticConstructor2.of(5); System.out.println(test); } | main |
10,538 | DataStaticConstructor2 (final int privateFinalInt) { return new DataStaticConstructor2(privateFinalInt); } | of |
10,539 | int () { return this.privateInt; } | getPrivateInt |
10,540 | int () { return this.privateFinalInt; } | getPrivateFinalInt |
10,541 | void (int privateInt) { this.privateInt = privateInt; } | setPrivateInt |
10,542 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof DataStaticConstructor2)) return false; final DataStaticConstructor2 other = (DataStaticConstructor2) o; if (!other.canEqual((Object) this)) return false; if (this.privateInt != other.privateInt) return false; if (this.privateFinalInt != other.privateFinalInt) return false; return true; } | equals |
10,543 | boolean (final Object other) { return other instanceof DataStaticConstructor2; } | canEqual |
10,544 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.privateInt; result = result * PRIME + this.privateFinalInt; return result; } | hashCode |
10,545 | String () { return "DataStaticConstructor2(privateInt=" + this.privateInt + ", privateFinalInt=" + this.privateFinalInt + ")"; } | toString |
10,546 | void (Object... objects) { } | setObjects |
10,547 | Object[] () { return this.objects; } | getObjects |
10,548 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof Klasse663)) return false; final Klasse663 other = (Klasse663) o; if (!other.canEqual((Object) this)) return false; if (!java.util.Arrays.deepEquals(this.getObjects(), other.getObjects())) return false; return true; } | equals |
10,549 | boolean (final Object other) { return other instanceof Klasse663; } | canEqual |
10,550 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + java.util.Arrays.deepHashCode(this.getObjects()); return result; } | hashCode |
10,551 | String () { return "Klasse663(objects=" + java.util.Arrays.deepToString(this.getObjects()) + ")"; } | toString |
10,552 | void (String[] args) { new Klasse663().setObjects(1, 2, 3); } | main |
10,553 | Entity (final String field) { return new Entity(field); } | of |
10,554 | String () { return this.field; } | getField |
10,555 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Entity)) return false; final Entity other = (Entity) o; if (!other.canEqual((java.lang.Object) this)) return false; final java.lang.Object this$field = this.getField(); final java.lang.Object other$field = other.getField(); if (this$field == null ? other$field != null : !this$field.equals(other$field)) return false; return true; } | equals |
10,556 | boolean (final java.lang.Object other) { return other instanceof Entity; } | canEqual |
10,557 | int () { final int PRIME = 59; int result = 1; final java.lang.Object $field = this.getField(); result = result * PRIME + ($field == null ? 43 : $field.hashCode()); return result; } | hashCode |
10,558 | void (String[] args) { final DataStaticConstructor3 test = new DataStaticConstructor3.of(); System.out.println(test); } | main |
10,559 | DataStaticConstructor3 () { return new DataStaticConstructor3(); } | of |
10,560 | int () { return this.privateInt; } | getPrivateInt |
10,561 | void (int privateInt) { this.privateInt = privateInt; } | setPrivateInt |
10,562 | boolean (final Object o) { if (o == this) return true; if (!(o instanceof DataStaticConstructor3)) return false; final DataStaticConstructor3 other = (DataStaticConstructor3) o; if (!other.canEqual((Object) this)) return false; if (this.privateInt != other.privateInt) return false; return true; } | equals |
10,563 | boolean (final Object other) { return other instanceof DataStaticConstructor3 } | canEqual |
10,564 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.privateInt; return result; } | hashCode |
10,565 | String () { return "DataStaticConstructor3(privateInt=" + this.privateInt + ")"; } | toString |
10,566 | int () { return this.x; } | getX |
10,567 | String () { return this.name; } | getName |
10,568 | void (final String name) { this.name = name; } | setName |
10,569 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data1)) return false; final Data1 other = (Data1) o; if (!other.canEqual((java.lang.Object) this)) return false; if (this.getX() != other.getX()) return false; final java.lang.Object this$name = this.getName(); final java.lang.Object other$name = other.getName(); if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false; return true; } | equals |
10,570 | boolean (final java.lang.Object other) { return other instanceof Data1; } | canEqual |
10,571 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); final java.lang.Object $name = this.getName(); result = result * PRIME + ($name == null ? 43 : $name.hashCode()); return result; } | hashCode |
10,572 | int () { return this.x; } | getX |
10,573 | String () { return this.name; } | getName |
10,574 | void (final String name) { this.name = name; } | setName |
10,575 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data2)) return false; final Data2 other = (Data2) o; if (!other.canEqual((java.lang.Object) this)) return false; if (this.getX() != other.getX()) return false; final java.lang.Object this$name = this.getName(); final java.lang.Object other$name = other.getName(); if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false; return true; } | equals |
10,576 | boolean (final java.lang.Object other) { return other instanceof Data2; } | canEqual |
10,577 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); final java.lang.Object $name = this.getName(); result = result * PRIME + ($name == null ? 43 : $name.hashCode()); return result; } | hashCode |
10,578 | int () { return this.x; } | getX |
10,579 | String () { return this.name; } | getName |
10,580 | void (final String name) { this.name = name; } | setName |
10,581 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data3)) return false; final Data3 other = (Data3) o; if (this.getX() != other.getX()) return false; final java.lang.Object this$name = this.getName(); final java.lang.Object other$name = other.getName(); if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false; return true; } | equals |
10,582 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getX(); final java.lang.Object $name = this.getName(); result = result * PRIME + ($name == null ? 43 : $name.hashCode()); return result; } | hashCode |
10,583 | int () { return this.x; } | getX |
10,584 | void (final int x) { this.x = x; } | setX |
10,585 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data4)) return false; final Data4 other = (Data4) o; if (!other.canEqual((java.lang.Object) this)) return false; if (!super.equals(o)) return false; if (this.getX() != other.getX()) return false; return true; } | equals |
10,586 | boolean (final java.lang.Object other) { return other instanceof Data4; } | canEqual |
10,587 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + super.hashCode(); result = result * PRIME + this.getX(); return result; } | hashCode |
10,588 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data5)) return false; final Data5 other = (Data5) o; if (!other.canEqual((java.lang.Object) this)) return false; return true; } | equals |
10,589 | boolean (final java.lang.Object other) { return other instanceof Data5; } | canEqual |
10,590 | int () { int result = 1; return result; } | hashCode |
10,591 | boolean (final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Data6)) return false; return true; } | equals |
10,592 | int () { int result = 1; return result; } | hashCode |
10,593 | void (int age) { this.age = age; } | age |
10,594 | BuilderPredefined () { return new BuilderPredefined(this.name, this.age); } | build |
10,595 | BuilderWithXArgsConstructor () { return new BuilderWithXArgsConstructor(this.someProperty); } | build |
10,596 | BuilderWithAllArgsConstructorPrivate () { return new BuilderWithAllArgsConstructorPrivate(this.someProperty); } | build |
10,597 | BuilderWithReqArgsConstructor () { return new BuilderWithReqArgsConstructor(this.someProperty); } | build |
10,598 | BuilderWithReqArgsConstructorPrivate () { return new BuilderWithReqArgsConstructorPrivate(this.someProperty); } | build |
10,599 | void (String[] args) { BuilderWithTolerate.builder().value("42").build(); } | main |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.