Class ASTWildcardBounds

    • Method Detail

      • isUpperBound

        public boolean isUpperBound()
        Returns true if this is an upper type bound, e.g. in <? extends Integer>.
      • isLowerBound

        public boolean isLowerBound()
        Returns true if this is a lower type bound, e.g. in <? super Node>.
      • getTypeBoundNode

        public ASTReferenceType getTypeBoundNode()
        Returns the type node representing the bound, e.g. the Node in <? super Node>.