Class MethodInfoList

    • Constructor Detail

      • MethodInfoList

        public MethodInfoList()
      • MethodInfoList

        public MethodInfoList​(int sizeHint)
    • Method Detail

      • getNames

        public List<String> getNames()
        Get the names of all methods in this list.
      • getAsStrings

        public List<String> getAsStrings()
        Get the string representations of all methods in this list (with annotations, modifiers, params, etc.), by calling MethodInfo.toString() on each item in the list.
      • containsName

        public boolean containsName​(String methodName)
        Return true if this list contains a method with the given name.
      • get

        public MethodInfo get​(String methodName)
        Return the MethodInfo object in the list with the given name, or null if not found.