WildcardTypeImpl

class WildcardTypeImpl : WildcardType

The WildcardType interface supports multiple upper bounds and multiple lower bounds. We only support what the Java 6 language needs - at most one bound. If a lower bound is set, the upper bound must be Object.class.

Constructors

Link copied to clipboard
open fun WildcardTypeImpl(upperBounds: Array<Type>, lowerBounds: Array<Type>)

Functions

Link copied to clipboard
open fun equals(other: Any): Boolean
Link copied to clipboard
open fun getLowerBounds(): Array<Type>
Link copied to clipboard
open fun getTypeName(): String
Link copied to clipboard
open fun getUpperBounds(): Array<Type>
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun toString(): String