Unnamed: 0 int64 0 305k | body stringlengths 7 52.9k | name stringlengths 1 185 |
|---|---|---|
9,700 | void (String[] args) { final AnnotationOverwriteTest test = new AnnotationOverwriteTest(); System.out.println(test.hashCode()); } | main |
9,701 | int () { return intProperty; } | getIntProperty |
9,702 | boolean () { return booleanProperty; } | isBooleanProperty |
9,703 | double () { return doubleProperty; } | getDoubleProperty |
9,704 | String () { return stringProperty; } | getStringProperty |
9,705 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,706 | String () { return stringProperty; } | getStringProperty |
9,707 | int () { return intProperty; } | getIntProperty |
9,708 | boolean () { return booleanProperty; } | isBooleanProperty |
9,709 | double () { return doubleProperty; } | getDoubleProperty |
9,710 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,711 | String () { return "ToStringConfiguration(" + this.x + ")"; } | toString |
9,712 | int () { return this.x; } | getX |
9,713 | String () { return "ToStringConfiguration2(x=" + this.x + ")"; } | toString |
9,714 | String () { return "ToStringConfiguration3(" + this.getX() + ")"; } | toString |
9,715 | int () { return this.x; } | getX |
9,716 | String () { return "SomeTest(y=" + this.y + ")"; } | toString |
9,717 | int () { return intProperty; } | getIntProperty |
9,718 | boolean () { return booleanProperty; } | isBooleanProperty |
9,719 | double () { return doubleProperty; } | getDoubleProperty |
9,720 | String () { return stringProperty; } | getStringProperty |
9,721 | void (String[] args) { final AnnotationOverwriteTest test = new AnnotationOverwriteTest(); System.out.println(test.hashCode()); } | main |
9,722 | String () { return "AnnotationOverwriteTest(intProperty=" + this.getIntProperty() + ", booleanProperty=" + this.isBooleanProperty() + ", doubleProperty=" + this.getDoubleProperty() + ", stringProperty=" + this.getStringProperty() + ")"; } | toString |
9,723 | int () { return intProperty; } | getIntProperty |
9,724 | boolean () { return booleanProperty; } | isBooleanProperty |
9,725 | double () { return doubleProperty; } | getDoubleProperty |
9,726 | String () { return stringProperty; } | getStringProperty |
9,727 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,728 | String () { return "SomeTest(intProperty=" + this.intProperty + ", booleanProperty=" + this.booleanProperty + ", doubleProperty=" + this.doubleProperty + ", stringProperty=" + this.stringProperty + ")"; } | toString |
9,729 | int () { return intProperty; } | getIntProperty |
9,730 | boolean () { return booleanProperty; } | isBooleanProperty |
9,731 | double () { return doubleProperty; } | getDoubleProperty |
9,732 | String () { return stringProperty; } | getStringProperty |
9,733 | void (String[] args) { final AnnotationOverwriteTest test = new AnnotationOverwriteTest(); System.out.println(test.hashCode()); } | main |
9,734 | int () { return intProperty; } | getIntProperty |
9,735 | boolean () { return booleanProperty; } | isBooleanProperty |
9,736 | double () { return doubleProperty; } | getDoubleProperty |
9,737 | String () { return stringProperty; } | getStringProperty |
9,738 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,739 | int () { return intProperty; } | getIntProperty |
9,740 | boolean () { return booleanProperty; } | isBooleanProperty |
9,741 | double () { return doubleProperty; } | getDoubleProperty |
9,742 | String () { return stringProperty; } | getStringProperty |
9,743 | void (String[] args) { final AnnotationOverwriteTest test = new AnnotationOverwriteTest(); System.out.println(test.hashCode()); } | main |
9,744 | String () { return "AnnotationOverwriteTest(intProperty=" + this.getIntProperty() + ", booleanProperty=" + this.isBooleanProperty() + ", doubleProperty=" + this.getDoubleProperty() + ", stringProperty=" + this.getStringProperty() + ")"; } | toString |
9,745 | int () { return intProperty; } | getIntProperty |
9,746 | boolean () { return booleanProperty; } | isBooleanProperty |
9,747 | double () { return doubleProperty; } | getDoubleProperty |
9,748 | String () { return stringProperty; } | getStringProperty |
9,749 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,750 | String () { return "SomeTest(" + this.getIntProperty() + ", " + this.isBooleanProperty() + ", " + this.getDoubleProperty() + ", " + this.getStringProperty() + ")"; } | toString |
9,751 | int () { return intProperty; } | getIntProperty |
9,752 | boolean () { return booleanProperty; } | isBooleanProperty |
9,753 | double () { return doubleProperty; } | getDoubleProperty |
9,754 | String () { return stringProperty; } | getStringProperty |
9,755 | void (String[] args) { final AnnotationOverwriteTest test = new AnnotationOverwriteTest(); System.out.println(test.hashCode()); } | main |
9,756 | int () { return intProperty; } | getIntProperty |
9,757 | boolean () { return booleanProperty; } | isBooleanProperty |
9,758 | double () { return doubleProperty; } | getDoubleProperty |
9,759 | String () { return stringProperty; } | getStringProperty |
9,760 | void (String[] args) { final SomeTest test = new SomeTest(); System.out.println(test.hashCode()); } | main |
9,761 | void () { LOGGER1.info("Hello World!"); } | logSomething |
9,762 | void (String[] args) { LOGGER1.info("Test"); <caret> new LoggerCompletionTest().logSomething(); } | main |
9,763 | int () { return this.intProperty; } | getIntProperty |
9,764 | String () { return this.stringProperty; } | getStringProperty |
9,765 | void (String stringProperty) { this.stringProperty = stringProperty; } | setStringProperty |
9,766 | boolean (Object o) { if (o == this) return true; if (!(o instanceof DataTest)) return false; final DataTest other = (DataTest) o; if (!other.canEqual((Object) this)) return false; if (this.getIntProperty() != other.getIntProperty()) return false; final Objectthis$stringProperty = this.getStringProperty(); final Objectother$stringProperty = other.getStringProperty(); if (this$stringProperty == null ? other$stringProperty != null : !this$stringProperty.equals(other$stringProperty)) return false; return true; } | equals |
9,767 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getIntProperty(); final Object $stringProperty = this.getStringProperty(); result = result * PRIME + ($stringProperty == null ? 43 : $stringProperty.hashCode()); return result; } | hashCode |
9,768 | boolean (Object other) { return other instanceof DataTest; } | canEqual |
9,769 | String () { return "DataTest(intProperty=" + this.getIntProperty() + ", stringProperty=" + this.getStringProperty() + ")"; } | toString |
9,770 | int () { return this.intProperty; } | getIntProperty |
9,771 | void (int intProperty) { this.intProperty = intProperty; } | setIntProperty |
9,772 | String () { return this.stringProperty; } | getStringProperty |
9,773 | void (String stringProperty) { this.stringProperty = stringProperty; } | setStringProperty |
9,774 | boolean (Object o) { if (o == this) return true; if (!(o instanceof DataNegativeTest)) return false; final DataNegativeTest other = (DataNegativeTest) o; if (!other.canEqual((Object) this)) return false; if (this.getIntProperty() != other.getIntProperty()) return false; final Objectthis$stringProperty = this.getStringProperty(); final Objectother$stringProperty = other.getStringProperty(); if (this$stringProperty == null ? other$stringProperty != null : !this$stringProperty.equals(other$stringProperty)) return false; return true; } | equals |
9,775 | int () { final int PRIME = 59; int result = 1; result = result * PRIME + this.getIntProperty(); final Object $stringProperty = this.getStringProperty(); result = result * PRIME + ($stringProperty == null ? 43 : $stringProperty.hashCode()); return result; } | hashCode |
9,776 | boolean (Object other) { return other instanceof DataNegativeTest; } | canEqual |
9,777 | String () { return "DataNegativeTest(intProperty=" + this.getIntProperty() + ", stringProperty=" + this.getStringProperty() + ")"; } | toString |
9,778 | Builder (final String field) { this.field = field; return this; } | field |
9,779 | Builder () { return builder().field(field); } | copy |
9,780 | BuilderWithConfiguredClassName () { return new BuilderWithConfiguredClassName(this.field); } | build |
9,781 | Builder () { return new BuilderWithConfiguredClassName.Builder(); } | builder |
9,782 | Builder () { return builder().field(field); } | copy |
9,783 | void () { JacksonizedBuilderComplex.<T>testVoidWithGenerics(this.number, this.arg2, this.arg3, this.selfRef); } | execute |
9,784 | void (String[] args) { final GetterSetterClassTest test = new GetterSetterClassTest(); test.stringProperty(""); test.intProperty(1); test.booleanProperty(true); test.doubleProperty(0.0); System.out.println(test); } | main |
9,785 | int () { return this.intProperty; } | intProperty |
9,786 | double () { return this.doubleProperty; } | doubleProperty |
9,787 | boolean () { return this.booleanProperty; } | booleanProperty |
9,788 | String () { return this.stringProperty; } | stringProperty |
9,789 | GetterSetterClassTest (int intProperty) { this.intProperty = intProperty; return this; } | intProperty |
9,790 | GetterSetterClassTest (double doubleProperty) { this.doubleProperty = doubleProperty; return this; } | doubleProperty |
9,791 | GetterSetterClassTest (boolean booleanProperty) { this.booleanProperty = booleanProperty; return this; } | booleanProperty |
9,792 | GetterSetterClassTest (String stringProperty) { this.stringProperty = stringProperty; return this; } | stringProperty |
9,793 | void (String[] args) { final GetterSetterClassAnnotationOverwriteTest test = new GetterSetterClassAnnotationOverwriteTest(); test.setStringProperty(""); test.setIntProperty(1) test.setBooleanProperty(true) test.setDoubleProperty(0.0); System.out.println(test); } | main |
9,794 | int () { return this.intProperty; } | getIntProperty |
9,795 | double () { return this.doubleProperty; } | getDoubleProperty |
9,796 | boolean () { return this.booleanProperty; } | isBooleanProperty |
9,797 | String () { return this.stringProperty; } | getStringProperty |
9,798 | void (int intProperty) { this.intProperty = intProperty; } | setIntProperty |
9,799 | void (double doubleProperty) { this.doubleProperty = doubleProperty; } | setDoubleProperty |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.