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

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DBoundMethodHandle.java70 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);
140 * Return the {@link SpeciesData} instance representing this BMH species. All subclasses must provide a
143 protected abstract SpeciesData speciesData();
213 public SpeciesData speciesData() {
216 public static final SpeciesData SPECIES_DATA = SpeciesData
332 static class SpeciesData { class in class:BoundMethodHandle
365 private SpeciesData(String types, Class<? extends BoundMethodHandle> clazz) { method in class:BoundMethodHandle.SpeciesData
386 private SpeciesData(String types) { method in class:BoundMethodHandle.SpeciesData
[all...]

Completed in 42 milliseconds