Uses of Class
java.lang.NoSuchMethodException
| Package | Description |
|---|---|
| java.lang | |
| org.apache.commons.logging |
Simple wrapper API around multiple logging APIs.
|
| org.apache.xml.dtm.ref |
-
Uses of NoSuchMethodException in java.lang
Methods in java.lang that throw NoSuchMethodException Modifier and Type Method Description Constructor<T>Class. getConstructor(Class<?>... parameterTypes)Returns aConstructorobject which represents the public constructor matching the given parameter types.Constructor<T>Class. getDeclaredConstructor(Class<?>... parameterTypes)Returns aConstructorobject which represents the constructor matching the given parameter types that is declared by the class represented by thisClass.MethodClass. getDeclaredMethod(String name, Class<?>... parameterTypes)Returns aMethodobject which represents the method matching the given name and parameter types that is declared by the class represented by thisClass.MethodClass. getMethod(String name, Class<?>... parameterTypes)Returns aMethodobject which represents the public method with the given name and parameter types. -
Uses of NoSuchMethodException in org.apache.commons.logging
Methods in org.apache.commons.logging that throw NoSuchMethodException Modifier and Type Method Description static voidLogSource. setLogImplementation(Class logclass)Deprecated.Set the log implementation/log implementation factory by class.static voidLogSource. setLogImplementation(String classname)Deprecated.Set the log implementation/log implementation factory by the name of the class. -
Uses of NoSuchMethodException in org.apache.xml.dtm.ref
Methods in org.apache.xml.dtm.ref that throw NoSuchMethodException Modifier and Type Method Description ObjectCoroutineManager. co_entry_pause(int thisCoroutine)In the standard coroutine architecture, coroutines are identified by their method names and are launched and run up to their first yield by simply resuming them; its's presumed that this recognizes the not-already-running case and does the right thing.voidCoroutineManager. co_exit_to(Object arg_object, int thisCoroutine, int toCoroutine)Make the ID available for reuse and terminate this coroutine, transferring control to the specified coroutine.ObjectCoroutineManager. co_resume(Object arg_object, int thisCoroutine, int toCoroutine)Transfer control to another coroutine which has already been started and is waiting on this CoroutineManager.