Class TypeBindings

    • Method Detail

      • emptyBindings

        public static TypeBindings emptyBindings()
      • create

        public static TypeBindings create​(Class<?> erasedType,
                                          List<JavaType> typeList)
        Factory method for constructing bindings for given class using specified type parameters.
      • createIfNeeded

        public static TypeBindings createIfNeeded​(Class<?> erasedType,
                                                  JavaType typeArg1)
        Alternate factory method that may be called if it is possible that type does or does not require type parameters; this is mostly useful for collection- and map-like types.
      • createIfNeeded

        public static TypeBindings createIfNeeded​(Class<?> erasedType,
                                                  JavaType[] types)
        Alternate factory method that may be called if it is possible that type does or does not require type parameters; this is mostly useful for collection- and map-like types.
      • withUnboundVariable

        public TypeBindings withUnboundVariable​(String name)
        Method for creating an instance that has same bindings as this object, plus an indicator for additional type variable that may be unbound within this context; this is needed to resolve recursive self-references.
      • findBoundType

        public JavaType findBoundType​(String name)
        Find type bound to specified name, if there is one; returns bound type if so, null if not.
      • isEmpty

        public boolean isEmpty()
      • size

        public int size()
        Returns number of bindings contained
      • getBoundName

        public String getBoundName​(int index)
      • getBoundType

        public JavaType getBoundType​(int index)
      • getTypeParameters

        public List<JavaType> getTypeParameters()
        Accessor for getting bound types in declaration order
      • hasUnbound

        public boolean hasUnbound​(String name)
        Since:
        2.3
      • asKey

        public Object asKey​(Class<?> rawBase)
        Factory method that will create an object that can be used as a key for caching purposes by TypeFactory
        Since:
        2.8
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object