模块  jdk.javadoc
软件包  com.sun.javadoc

Interface WildcardType

  • All Superinterfaces:
    Type

    @Deprecated(since="9",
                forRemoval=true)
    public interface WildcardType
    extends Type
    Deprecated, for removal: This API element is subject to removal in a future version.
    The declarations in this package have been superseded by those in the package jdk.javadoc.doclet. For more information, see the Migration Guide in the documentation for that package.
    表示通配符类型参数。 例子包括:
      <?>
     <? extends E>
     <? super T> 
    通配符类型可以具有显式扩展边界或显式边界,也可以不具有,但不能同时具有两者。
    从以下版本开始:
    1.5
    • 方法详细信息

      • extendsBounds

        Type[] extendsBounds()
        Deprecated, for removal: This API element is subject to removal in a future version.
        返回extends子句给出的此通配符类型参数的上限。 如果没有明确给出这样的边界,则返回一个空数组。
        结果
        此通配符类型参数的extends bounds
      • superBounds

        Type[] superBounds()
        Deprecated, for removal: This API element is subject to removal in a future version.
        返回super子句给出的此通配符类型参数的下限。 如果没有明确给出这样的边界,则返回一个空数组。
        结果
        此通配符类型参数的超边界