comparison jvmci/jdk.vm.ci.meta/src/jdk/vm/ci/meta/ResolvedJavaType.java @ 23393:1d4ce2d19e52

clean up and minimize JVMCI (JDK-8156835)
author Doug Simon <doug.simon@oracle.com>
date Thu, 12 May 2016 20:57:31 +0200
parents ae27c683c128
children d6bd0b9cd0b6
comparison
equal deleted inserted replaced
23392:b3a816d3b844 23393:1d4ce2d19e52
60 * @return {@code true} if this type is an instance class 60 * @return {@code true} if this type is an instance class
61 */ 61 */
62 boolean isInstanceClass(); 62 boolean isInstanceClass();
63 63
64 /** 64 /**
65 * Checks whether this type is an array class.
66 *
67 * @return {@code true} if this type is an array class
68 */
69 boolean isArray();
70
71 /**
72 * Checks whether this type is primitive. 65 * Checks whether this type is primitive.
73 * 66 *
74 * @return {@code true} if this type is primitive 67 * @return {@code true} if this type is primitive
75 */ 68 */
76 boolean isPrimitive(); 69 boolean isPrimitive();