Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for niue (0.13 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

       * {@code <? extends Map<String, Integer>[]>} etc.
       */
      public final boolean isArray() {
        return getComponentType() != null;
      }
    
      /**
       * Returns true if this type is one of the nine primitive types (including {@code void}).
       *
       * @since 15.0
       */
      public final boolean isPrimitive() {
        return (runtimeType instanceof Class) && ((Class<?>) runtimeType).isPrimitive();
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
Back to top