Java org.eclipse.jdt.core.dom WildcardType fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom WildcardType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom WildcardType.

The text is from its open source code.

Field

ChildPropertyDescriptorBOUND_PROPERTY
The "bound" structural property of this node type (child type: Type ).
booleanisUpperBound
Indicates whether the wildcard bound is an upper bound ("extends") as opposed to a lower bound ("super").

Constructor

WildcardType(AST ast)
Creates a new unparented node for a wildcard type owned by the given AST.

Method

Listannotations()
Returns the live ordered list of annotations for this Type node (added in JLS8 API).
TypegetBound()
Returns the bound of this wildcard type if it has one.
voidsetBound(Type type, boolean isUpperBound)
Sets the bound of this wildcard type to the given type and marks it as an upper or a lower bound.
voidsetBound(Type type)
Sets the bound of this wildcard type to the given type.
voidsetUpperBound(boolean isUpperBound)
Sets whether this wildcard type is an upper bound ("extends") as opposed to a lower bound ("super").