Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isWrapper (0.09 sec)

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

        }
        return this;
      }
    
      private boolean isWrapper() {
        return Primitives.allWrapperTypes().contains(runtimeType);
      }
    
      /**
       * Returns the corresponding primitive type if this is a wrapper type; otherwise returns {@code
       * this} itself. Idempotent.
       *
       * @since 15.0
       */
      public final TypeToken<T> unwrap() {
        if (isWrapper()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

        }
        return this;
      }
    
      private boolean isWrapper() {
        return Primitives.allWrapperTypes().contains(runtimeType);
      }
    
      /**
       * Returns the corresponding primitive type if this is a wrapper type; otherwise returns {@code
       * this} itself. Idempotent.
       *
       * @since 15.0
       */
      public final TypeToken<T> unwrap() {
        if (isWrapper()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top