Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nullableTypeOf (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

            return nullableTypeOf(type.getUpperBound());
        }
    
        /**
         * Returns the first declared lower-bound of the wildcard type expression represented by this type.
         *
         * @return null if no lower-bound has been explicitly declared.
         * @since 6.0
         */
        @Nullable
        public TypeOf<?> getLowerBound() {
            return nullableTypeOf(type.getLowerBound());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top