Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ToArray (0.04 sec)

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

          this.upperBounds = JavaVersion.CURRENT.usedInGenericType(upperBounds);
        }
    
        @Override
        public Type[] getLowerBounds() {
          return toArray(lowerBounds);
        }
    
        @Override
        public Type[] getUpperBounds() {
          return toArray(upperBounds);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof WildcardType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

          this.upperBounds = JavaVersion.CURRENT.usedInGenericType(upperBounds);
        }
    
        @Override
        public Type[] getLowerBounds() {
          return toArray(lowerBounds);
        }
    
        @Override
        public Type[] getUpperBounds() {
          return toArray(upperBounds);
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof WildcardType) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeResolver.java

              if (combined.size() > 1) { // Object is implicit and only useful if it's the only bound.
                combined.remove(Object.class);
              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
        private WildcardCapturer notForTypeVariable() {
          return new WildcardCapturer(id);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeResolver.java

              if (combined.size() > 1) { // Object is implicit and only useful if it's the only bound.
                combined.remove(Object.class);
              }
              return super.captureAsTypeVariable(combined.toArray(new Type[0]));
            }
          };
        }
    
        private WildcardCapturer notForTypeVariable() {
          return new WildcardCapturer(id);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
Back to top