src/java.base/share/classes/java/lang/invoke/TypeDescriptor.java
changeset 53019 4ddd3c410a85
parent 52914 4fa75d8ad418
equal deleted inserted replaced
53018:8bf9268df0e2 53019:4ddd3c410a85
    59          * @return whether this field descriptor describes an array type
    59          * @return whether this field descriptor describes an array type
    60          */
    60          */
    61         boolean isArray();
    61         boolean isArray();
    62 
    62 
    63         /**
    63         /**
    64          * Does this field descriptor describe a primitive type?
    64          * Does this field descriptor describe a primitive type (including void.)
       
    65          *
    65          * @return whether this field descriptor describes a primitive type
    66          * @return whether this field descriptor describes a primitive type
    66          */
    67          */
    67         boolean isPrimitive();
    68         boolean isPrimitive();
    68 
    69 
    69         /**
    70         /**