Returns true if this type is one of the nine primitive types (including void). @since 15.0
()
| 534 | |
| 535 | |
| 536 | public final boolean isPrimitive() { |
| 537 | return (runtimeType instanceof Class) |
| 538 | && ((Class<?>) runtimeType).isPrimitive(); |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * Returns the corresponding wrapper type if this is a primitive type; otherwise returns |
no outgoing calls
no test coverage detected