Class JandexReflection.WildcardTypeImpl

java.lang.Object
org.jboss.jandex.JandexReflection.WildcardTypeImpl
All Implemented Interfaces:
Type, WildcardType
Enclosing class:
JandexReflection

private static class JandexReflection.WildcardTypeImpl extends Object implements WildcardType
An implementation of WildcardType that is compatible with the JDK's implementation (as in, the equals() and hashCode() methods work as expected).
  • Field Details

    • DEFAULT_UPPER_BOUND

      private static final Type[] DEFAULT_UPPER_BOUND
    • DEFAULT_LOWER_BOUND

      private static final Type[] DEFAULT_LOWER_BOUND
    • UNBOUNDED

      private static final WildcardType UNBOUNDED
    • upperBound

      private final Type[] upperBound
    • lowerBound

      private final Type[] lowerBound
  • Constructor Details

    • WildcardTypeImpl

      private WildcardTypeImpl(Type[] upperBound, Type[] lowerBound)
  • Method Details