Searched refs:isInterface (Results 1 – 6 of 6) sorted by relevance
148 public static boolean isInterface(int modifiers) { in isInterface() method in Modifier317 if (isInterface(modifiers)) { in toString()
108 if (!next.isInterface()) { in getProxyClass()
91 assertTrue("INTERFACE returned false", Modifier.isInterface(ALL_FLAGS)); in test_isInterfaceI()93 .isInterface(Modifier.INTERFACE)); in test_isInterfaceI()95 .isInterface(Modifier.TRANSIENT)); in test_isInterfaceI()
1523 assertTrue("Prim type claims to be interface.", !int.class.isInterface()); in test_isInterface()1526 assertTrue("Prim Array type claims to be interface.", !clazz.isInterface()); in test_isInterface()1529 assertTrue("Interface type claims not to be interface.", clazz.isInterface()); in test_isInterface()1531 assertTrue("Object type claims to be interface.", !clazz.isInterface()); in test_isInterface()1534 assertTrue("Array type claims to be interface.", !clazz.isInterface()); in test_isInterface()
1343 public native boolean isInterface(); in isInterface() method in Class1420 return (isInterface() ? "interface " : "class ") + getName(); in toString()
443 if (cl.isInterface() && !Modifier.isPublic(classModifiers)) { in computeSerialVersionUID()