Searched defs:BoundMethodHandle (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DBoundMethodHandle.java54 /* non-public */ abstract class BoundMethodHandle extends MethodHandle { class in inherits:MethodHandle
56 /* non-public */ BoundMethodHandle(MethodType type, LambdaForm form) { method in class:BoundMethodHandle
70 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('L').constructor[0].invokeBasic(type, form, x);
72 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('I').constructor[0].invokeBasic(type, form, ValueConversions.widenSubword(x));
74 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('J').constructor[0].invokeBasic(type, form, (long) x);
76 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('F').constructor[0].invokeBasic(type, form, (float) x);
78 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('D').constructor[0].invokeBasic(type, form, (double) x);
183 public abstract BoundMethodHandle clone(MethodType mt, LambdaForm lf) throws Throwable;
184 public abstract BoundMethodHandle cloneExtendL(MethodType mt, LambdaForm lf, Object narg) throws Throwable;
185 public abstract BoundMethodHandle cloneExtend
[all...]

Completed in 33 milliseconds