Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Package | Description |
---|---|
java.dyn | PROVISIONAL API, WORK IN PROGRESS: This package contains dynamic language support provided directly by the Java core class libraries and virtual machine. |
Uses of NoAccessException in java.dyn |
---|
Modifier and Type | Method and Description |
---|---|
MethodHandle |
MethodHandles.Lookup.bind(Object receiver,
String name,
MethodType type)
Produce an early-bound method handle for a non-static method. |
static MethodHandle |
MethodHandles.dynamicInvoker(CallSite site)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle equivalent to an invokedynamic instruction which has been linked to the given call site. |
MethodHandle |
MethodHandles.Lookup.findConstructor(Class<?> refc,
MethodType type)
Produce a method handle which creates an object and initializes it, using the constructor of the specified type. |
MethodHandle |
MethodHandles.Lookup.findGetter(Class<?> refc,
String name,
Class<?> type)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving read access to a non-static field. |
MethodHandle |
MethodHandles.Lookup.findSetter(Class<?> refc,
String name,
Class<?> type)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving write access to a non-static field. |
MethodHandle |
MethodHandles.Lookup.findSpecial(Class<?> refc,
String name,
MethodType type,
Class<?> specialCaller)
Produce an early-bound method handle for a virtual method, as if called from an invokespecial
instruction from caller . |
MethodHandle |
MethodHandles.Lookup.findStatic(Class<?> refc,
String name,
MethodType type)
Produce a method handle for a static method. |
MethodHandle |
MethodHandles.Lookup.findStaticGetter(Class<?> refc,
String name,
Class<?> type)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving read access to a static field. |
MethodHandle |
MethodHandles.Lookup.findStaticSetter(Class<?> refc,
String name,
Class<?> type)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving write access to a static field. |
MethodHandle |
MethodHandles.Lookup.findVirtual(Class<?> refc,
String name,
MethodType type)
Produce a method handle for a virtual method. |
MethodHandle |
MethodHandles.Lookup.unreflect(Method m)
PROVISIONAL API, WORK IN PROGRESS: Make a direct method handle to m, if the lookup class has permission. |
MethodHandle |
MethodHandles.Lookup.unreflectConstructor(Constructor c)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle for a reflected constructor. |
MethodHandle |
MethodHandles.Lookup.unreflectGetter(Field f)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving read access to a reflected field. |
MethodHandle |
MethodHandles.Lookup.unreflectSetter(Field f)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle giving write access to a reflected field. |
MethodHandle |
MethodHandles.Lookup.unreflectSpecial(Method m,
Class<?> specialCaller)
PROVISIONAL API, WORK IN PROGRESS: Produce a method handle for a reflected method. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.