Class MethodList.ForLoadedMethods

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.List<? extends java.lang.reflect.Constructor<?>> constructors
      The loaded constructors that are represented by this method list.
      private java.util.List<? extends java.lang.reflect.Method> methods
      The loaded methods that are represented by this method list.
      • Fields inherited from class java.util.AbstractList

        modCount
    • Constructor Summary

      Constructors 
      Constructor Description
      ForLoadedMethods​(java.lang.Class<?> type)
      Creates a new list for a loaded type.
      ForLoadedMethods​(java.lang.reflect.Constructor<?>[] constructor, java.lang.reflect.Method[] method)
      Creates a method list that represents the given constructors and methods in their given order.
      ForLoadedMethods​(java.util.List<? extends java.lang.reflect.Constructor<?>> constructors, java.util.List<? extends java.lang.reflect.Method> methods)
      Creates a method list that represents the given constructors and methods in their given order.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      MethodDescription.InDefinedShape get​(int index)
      int size()
      • Methods inherited from class java.util.AbstractList

        add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set
      • Methods inherited from class java.util.AbstractCollection

        addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        add, add, addAll, addAll, clear, contains, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, toArray, toArray
    • Field Detail

      • methods

        private final java.util.List<? extends java.lang.reflect.Method> methods
        The loaded methods that are represented by this method list.
      • constructors

        private final java.util.List<? extends java.lang.reflect.Constructor<?>> constructors
        The loaded constructors that are represented by this method list.
    • Constructor Detail

      • ForLoadedMethods

        public ForLoadedMethods​(java.lang.Class<?> type)
        Creates a new list for a loaded type. Method descriptions are created on demand.
        Parameters:
        type - The type to be represented by this method list.
      • ForLoadedMethods

        public ForLoadedMethods​(java.lang.reflect.Constructor<?>[] constructor,
                                java.lang.reflect.Method[] method)
        Creates a method list that represents the given constructors and methods in their given order. The constructors are assigned the indices before the methods.
        Parameters:
        constructor - The constructors to be represented by the method list.
        method - The methods to be represented by the method list.
      • ForLoadedMethods

        public ForLoadedMethods​(java.util.List<? extends java.lang.reflect.Constructor<?>> constructors,
                                java.util.List<? extends java.lang.reflect.Method> methods)
        Creates a method list that represents the given constructors and methods in their given order. The constructors are assigned the indices before the methods.
        Parameters:
        constructors - The constructors to be represented by the method list.
        methods - The methods to be represented by the method list.