src/share/classes/java/lang/reflect/Field.java

Print this page

        

*** 286,295 **** --- 286,298 ---- * <p>The modifiers are placed in canonical order as specified by * "The Java Language Specification". This is {@code public}, * {@code protected} or {@code private} first, and then other * modifiers in the following order: {@code static}, {@code final}, * {@code transient}, {@code volatile}. + * + * @return a string describing this {@code Field} + * @jls 8.3.1 Field Modifiers */ public String toString() { int mod = getModifiers(); return (((mod == 0) ? "" : (Modifier.toString(mod) + " ")) + getTypeName(getType()) + " "
*** 313,322 **** --- 316,326 ---- * * @return a string describing this {@code Field}, including * its generic type * * @since 1.5 + * @jls 8.3.1 Field Modifiers */ public String toGenericString() { int mod = getModifiers(); Type fieldType = getGenericType(); return (((mod == 0) ? "" : (Modifier.toString(mod) + " "))