cipo7741 / guess-the-method

Given the java api doc description of a method, guess the method name.
GNU General Public License v3.0
0 stars 0 forks source link

guess-the-method

Given the Java API description of a method, guess the method name.

Examples:

  1. Compares two strings lexicographically in java.lang.String.
    _ ( String ))

  2. Concatenates the specified string to the end of this string in java.lang.String.
    ( String )

  3. Replaces the first substring of this string that matches the given regular expression with the given replacement in java.lang.String.
    ( String , String )

  4. Returns the name of the character encoding being used by this stream in java.io.OutputStreamWriter.
    _ ( )