Finding out what methods are on an object is as easy as asking the metaClass:

    "foo".metaClass.methods.name.sort().unique()

prints: 
    
    ["charAt", "codePointAt", "codePointBefore", "codePointCount", "compareTo",
     "compareToIgnoreCase", "concat", "contains", "contentEquals", "copyValueOf", 
     "endsWith", "equals", "equalsIgnoreCase", "format", "getBytes", "getChars", 
     "getClass", "hashCode", "indexOf", "intern", "lastIndexOf", "length", "matches", 
     "notify", "notifyAll", "offsetByCodePoints", "regionMatches", "replace", 
     "replaceAll", "replaceFirst", "split", "startsWith", "subSequence", "substring", 
     "toCharArray", "toLowerCase", "toString", "toUpperCase", "trim", "valueOf", "wait"]