Uses of Class
java.lang.NoSuchMethodException
-
Packages that use NoSuchMethodException 软件包 描述 java.lang 提供对Java编程语言设计至关重要的类。java.lang.invoke java.lang.invoke包包含由Java核心类库和虚拟机直接提供的动态语言支持。javafx.beans.property.adapter 提供各种类,作为常规Java Bean属性和对应的JavaFX Property之间的适配器。javax.management.relation 提供关系服务的定义。javax.script 脚本API由定义Java脚本引擎的接口和类组成,并为Java应用程序中的使用提供了框架。jdk.nashorn.api.scripting 这个包提供了javax.script集成,这是使用Nashorn的首选方式。 -
-
Uses of NoSuchMethodException in java.lang
Methods in java.lang that throw NoSuchMethodException Modifier and Type 方法 描述 Constructor<T>Class. getConstructor(Class<?>... parameterTypes)返回一个Constructor对象,该对象反映由该Class对象表示的类的指定公共构造函数。Constructor<T>Class. getDeclaredConstructor(Class<?>... parameterTypes)返回一个Constructor对象,它反映此表示的类或接口的指定构造Class对象。方法Class. getDeclaredMethod(String name, Class<?>... parameterTypes)返回一个方法对象,它反映此表示的类或接口的指定声明的方法Class对象。方法Class. getMethod(String name, Class<?>... parameterTypes)返回一个方法对象,它反映此表示的类或接口的指定公共成员方法Class对象。 -
Uses of NoSuchMethodException in java.lang.invoke
Methods in java.lang.invoke that throw NoSuchMethodException Modifier and Type 方法 描述 MethodHandleMethodHandles.Lookup. bind(Object receiver, String name, MethodType type)为非静态方法生成早期绑定的方法句柄。MethodHandleMethodHandles.Lookup. findConstructor(Class<?> refc, MethodType type)使用指定类型的构造函数生成创建对象并初始化它的方法句柄。MethodHandleMethodHandles.Lookup. findSpecial(Class<?> refc, String name, MethodType type, Class<?> specialCaller)为虚拟方法生成早期绑定的方法句柄。MethodHandleMethodHandles.Lookup. findStatic(Class<?> refc, String name, MethodType type)为静态方法生成方法句柄。MethodHandleMethodHandles.Lookup. findVirtual(Class<?> refc, String name, MethodType type)为虚拟方法生成方法句柄。 -
Uses of NoSuchMethodException in javafx.beans.property.adapter
-
Uses of NoSuchMethodException in javax.management.relation
Methods in javax.management.relation that throw NoSuchMethodException Modifier and Type 方法 描述 voidRelationService. addRelation(ObjectName relationObjectName)将由用户创建的一个MBean(并由他注册在MBean服务器中)添加为关系服务中的关系。voidRelationServiceMBean. addRelation(ObjectName relationObjectName)将由用户创建的一个MBean(并由他注册在MBean服务器中)添加为关系服务中的关系。 -
Uses of NoSuchMethodException in javax.script
Methods in javax.script that throw NoSuchMethodException Modifier and Type 方法 描述 ObjectInvocable. invokeFunction(String name, Object... args)用于调用脚本中定义的顶级过程和函数。ObjectInvocable. invokeMethod(Object thiz, String name, Object... args)在前一个脚本执行期间编译的脚本对象上调用方法,该方法保留在ScriptEngine的状态。 -
Uses of NoSuchMethodException in jdk.nashorn.api.scripting
Methods in jdk.nashorn.api.scripting that throw NoSuchMethodException Modifier and Type 方法 描述 ObjectNashornScriptEngine. invokeFunction(String name, Object... args)ObjectNashornScriptEngine. invokeMethod(Object thiz, String name, Object... args)
-