Uses of Class
java.lang.NoSuchMethodException
-
Packages that use NoSuchMethodException 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.lang.invoke java.lang.invoke
包提供了与Java虚拟机交互的低级原语。javax.management.relation 提供Relation Service的定义。javax.script 脚本API由定义Java脚本引擎的接口和类组成,并为它们在Java应用程序中的使用提供了框架。 -
-
Uses of NoSuchMethodException in java.lang
Methods in java.lang that throw NoSuchMethodException 变量和类型 方法 描述 构造器<T>
Class. getConstructor(类<?>... parameterTypes)
返回一个构造器
对象,该对象反映此类
对象所表示的类的指定公共构造函数。构造器<T>
Class. getDeclaredConstructor(类<?>... parameterTypes)
返回一个构造器
对象,该对象反映此类
对象表示的类或接口的指定构造函数。方法
Class. getDeclaredMethod(String name, 类<?>... parameterTypes)
返回方法
对象,该对象反映此类
对象表示的类或接口的指定声明方法。方法
Class. getMethod(String name, 类<?>... parameterTypes)
返回一个方法
对象,该对象反映此类
对象所表示的类或接口的指定公共成员方法。 -
Uses of NoSuchMethodException in java.lang.invoke
Methods in java.lang.invoke that throw NoSuchMethodException 变量和类型 方法 描述 MethodHandle
MethodHandles.Lookup. bind(Object receiver, String name, MethodType type)
为非静态方法生成早期绑定方法句柄。MethodHandle
MethodHandles.Lookup. findConstructor(类<?> refc, MethodType type)
生成一个方法句柄,该句柄使用指定类型的构造函数创建对象并对其进行初始化。MethodHandle
MethodHandles.Lookup. findSpecial(类<?> refc, String name, MethodType type, 类<?> specialCaller)
为虚方法生成早期绑定方法句柄。MethodHandle
MethodHandles.Lookup. findStatic(类<?> refc, String name, MethodType type)
生成静态方法的方法句柄。MethodHandle
MethodHandles.Lookup. findVirtual(类<?> refc, String name, MethodType type)
生成虚方法的方法句柄。 -
Uses of NoSuchMethodException in javax.management.relation
Methods in javax.management.relation that throw NoSuchMethodException 变量和类型 方法 描述 void
RelationService. addRelation(ObjectName relationObjectName)
添加用户创建的MBean(并由他在MBean Server中注册)作为Relation Service中的关系。void
RelationServiceMBean. addRelation(ObjectName relationObjectName)
添加用户创建的MBean(并由他在MBean Server中注册)作为Relation Service中的关系。 -
Uses of NoSuchMethodException in javax.script
Methods in javax.script that throw NoSuchMethodException 变量和类型 方法 描述 Object
Invocable. invokeFunction(String name, Object... args)
用于调用脚本中定义的顶级过程和函数。Object
Invocable. invokeMethod(Object thiz, String name, Object... args)
在先前脚本执行期间编译的脚本对象上调用方法,该脚本对象保留在ScriptEngine
的状态中。
-