Java Code Examples for java.lang.reflect.Array#getByte()
The following examples show how to use
java.lang.reflect.Array#getByte() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Formatter.java From rice with Educational Community License v2.0 | 5 votes |
public static Object toObject(Object value) { if (!value.getClass().isArray()) return value; Class type = value.getClass().getComponentType(); if (Array.getLength(value) == 0) return null; if (!type.isPrimitive()) return Array.get(value, 0); if (boolean.class.isAssignableFrom(type)) return Array.getBoolean(value, 0); if (char.class.isAssignableFrom(type)) return new Character(Array.getChar(value, 0)); if (byte.class.isAssignableFrom(type)) return new Byte(Array.getByte(value, 0)); if (int.class.isAssignableFrom(type)) return new Integer(Array.getInt(value, 0)); if (long.class.isAssignableFrom(type)) return new Long(Array.getLong(value, 0)); if (short.class.isAssignableFrom(type)) return new Short(Array.getShort(value, 0)); if (double.class.isAssignableFrom(type)) return new Double(Array.getDouble(value, 0)); if (float.class.isAssignableFrom(type)) return new Float(Array.getFloat(value, 0)); return null; }
Example 2
Source File: SerialCompressionTest.java From gemfirexd-oss with Apache License 2.0 | 5 votes |
/** * * @param key * @param valueFromRegion * @param valueFromBB */ private void verifyArray(String key, Object valueFromRegion, Object valueFromBB) { Object regionArrayValue = null; Object bbArrayValue = null; String regionClassType = valueFromRegion.getClass().getSimpleName(); int arrayLength = Array.getLength(valueFromRegion); for (int i = 0;i < arrayLength;i++) { if (regionClassType.contains("boolean")) { regionArrayValue = Array.getBoolean(valueFromRegion, i); bbArrayValue = Array.getBoolean(valueFromBB, i); } else if (regionClassType.contains("byte")) { regionArrayValue = Array.getByte(valueFromRegion, i); bbArrayValue = Array.getByte(valueFromBB, i); } else if (regionClassType.contains("char")) { regionArrayValue = Array.getChar(valueFromRegion, i); bbArrayValue = Array.getChar(valueFromBB, i); } else if (regionClassType.contains("double")) { regionArrayValue = Array.getDouble(valueFromRegion, i); bbArrayValue = Array.getDouble(valueFromBB, i); } else if (regionClassType.contains("float")) { regionArrayValue = Array.getFloat(valueFromRegion, i); bbArrayValue = Array.getFloat(valueFromBB, i); } else if (regionClassType.contains("int")) { regionArrayValue = Array.getInt(valueFromRegion, i); bbArrayValue = Array.getInt(valueFromBB, i); } else if (regionClassType.contains("long")) { regionArrayValue = Array.getLong(valueFromRegion, i); bbArrayValue = Array.getLong(valueFromBB, i); } else if (regionClassType.contains("short")) { regionArrayValue = Array.getShort(valueFromRegion, i); bbArrayValue = Array.getShort(valueFromBB, i); } else { Log.getLogWriter().info("MDP-SerialCompressionTest.verifyArray regionClassType=" + regionClassType + " arrayLength=" + arrayLength); } verifyValues(key, regionArrayValue, bbArrayValue); } }
Example 3
Source File: SerialCompressionTest.java From gemfirexd-oss with Apache License 2.0 | 5 votes |
/** * * @param key * @param valueFromRegion * @param valueFromBB */ private void verifyArray(String key, Object valueFromRegion, Object valueFromBB) { Object regionArrayValue = null; Object bbArrayValue = null; String regionClassType = valueFromRegion.getClass().getSimpleName(); int arrayLength = Array.getLength(valueFromRegion); for (int i = 0;i < arrayLength;i++) { if (regionClassType.contains("boolean")) { regionArrayValue = Array.getBoolean(valueFromRegion, i); bbArrayValue = Array.getBoolean(valueFromBB, i); } else if (regionClassType.contains("byte")) { regionArrayValue = Array.getByte(valueFromRegion, i); bbArrayValue = Array.getByte(valueFromBB, i); } else if (regionClassType.contains("char")) { regionArrayValue = Array.getChar(valueFromRegion, i); bbArrayValue = Array.getChar(valueFromBB, i); } else if (regionClassType.contains("double")) { regionArrayValue = Array.getDouble(valueFromRegion, i); bbArrayValue = Array.getDouble(valueFromBB, i); } else if (regionClassType.contains("float")) { regionArrayValue = Array.getFloat(valueFromRegion, i); bbArrayValue = Array.getFloat(valueFromBB, i); } else if (regionClassType.contains("int")) { regionArrayValue = Array.getInt(valueFromRegion, i); bbArrayValue = Array.getInt(valueFromBB, i); } else if (regionClassType.contains("long")) { regionArrayValue = Array.getLong(valueFromRegion, i); bbArrayValue = Array.getLong(valueFromBB, i); } else if (regionClassType.contains("short")) { regionArrayValue = Array.getShort(valueFromRegion, i); bbArrayValue = Array.getShort(valueFromBB, i); } else { Log.getLogWriter().info("MDP-SerialCompressionTest.verifyArray regionClassType=" + regionClassType + " arrayLength=" + arrayLength); } verifyValues(key, regionArrayValue, bbArrayValue); } }
Example 4
Source File: MethodExitReturnValuesTest.java From hottub with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 5
Source File: MethodExitReturnValuesTest.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 6
Source File: MethodExitReturnValuesTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 7
Source File: MethodExitReturnValuesTest.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 8
Source File: MethodExitReturnValuesTest.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 9
Source File: MethodExitReturnValuesTest.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 10
Source File: MethodExitReturnValuesTest.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 11
Source File: MethodExitReturnValuesTest.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 12
Source File: MethodExitReturnValuesTest.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 13
Source File: Array_getByte01.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public static byte test(int i) { return Array.getByte(array, i); }
Example 14
Source File: MethodExitReturnValuesTest.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 15
Source File: MethodExitReturnValuesTest.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 16
Source File: BridgeOutputBuilder.java From pxf with Apache License 2.0 | 4 votes |
/** * Fills one GPDBWritable field. * * @param oneField field * @param colIdx column index * @throws BadRecordException if field type is not supported or doesn't * match the schema */ void fillOneGPDBWritableField(OneField oneField, int colIdx) throws BadRecordException { int type = oneField.type; Object val = oneField.val; GPDBWritable gpdbOutput = (GPDBWritable) output; try { switch (DataType.get(type)) { case INTEGER: gpdbOutput.setInt(colIdx, (Integer) val); break; case FLOAT8: gpdbOutput.setDouble(colIdx, (Double) val); break; case REAL: gpdbOutput.setFloat(colIdx, (Float) val); break; case BIGINT: gpdbOutput.setLong(colIdx, (Long) val); break; case SMALLINT: gpdbOutput.setShort(colIdx, (Short) val); break; case BOOLEAN: gpdbOutput.setBoolean(colIdx, (Boolean) val); break; case BYTEA: byte[] bts = null; if (val != null) { int length = Array.getLength(val); bts = new byte[length]; for (int j = 0; j < length; j++) { bts[j] = Array.getByte(val, j); } } gpdbOutput.setBytes(colIdx, bts); break; case VARCHAR: case BPCHAR: case TEXT: case NUMERIC: case TIMESTAMP: case DATE: gpdbOutput.setString(colIdx, ObjectUtils.toString(val, null)); break; default: String valClassName = (val != null) ? val.getClass().getSimpleName() : null; throw new UnsupportedOperationException(valClassName + " is not supported for GPDB conversion"); } } catch (GPDBWritable.TypeMismatchException e) { throw new BadRecordException(e); } }
Example 17
Source File: MethodExitReturnValuesTest.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }
Example 18
Source File: MethodExitReturnValuesTest.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
static void doit(MethodExitReturnValuesTarg xx) { s_show("========== Testing static methods ================"); s_bytef(); s_charf(); s_doublef(); s_floatf(); s_intf(); s_longf(); s_shortf(); s_booleanf(); s_stringf(); s_classf(); s_classLoaderf(); s_threadf(); s_threadGroupf(); s_intArrayf(); s_nullObjectf(); s_objectf(); s_voidf(); s_show("========== Testing instance methods ================"); xx.i_bytef(); xx.i_charf(); xx.i_doublef(); xx.i_floatf(); xx.i_intf(); xx.i_longf(); xx.i_shortf(); xx.i_booleanf(); xx.i_stringf(); xx.i_intArrayf(); xx.i_classf(); xx.i_classLoaderf(); xx.i_threadf(); xx.i_threadGroupf(); xx.i_nullObjectf(); xx.i_objectf(); xx.i_voidf(); // Prove it works for native methods too s_show("========== Testing native methods ================"); StrictMath.sin(doubleValue); Array.getByte(arrByte, 0); Array.getChar(arrChar, 0); Array.getDouble(arrDouble, 0); Array.getFloat(arrFloat, 0); Array.getInt(arrInt, 0); Array.getLong(arrLong, 0); Array.getShort(arrShort, 0); Array.getBoolean(arrBoolean, 0); Array.get(arrObject, 0); stringValue.intern(); }