Home | History | Annotate | Download | only in lang

Lines Matching defs:byteValue

26      * java.lang.Short#byteValue()
29 // Test for method byte java.lang.Short.byteValue()
31 .byteValue());
33 .byteValue());
414 * java.lang.Short#byteValue()
417 assertEquals(1, new Short((short) 1).byteValue());
418 assertEquals(2, new Short((short) 2).byteValue());
419 assertEquals(0, new Short((short) 0).byteValue());
420 assertEquals(-1, new Short((short) -1).byteValue());
499 assertEquals(Character.digit('1', 2), Short.valueOf("1", 2).byteValue());
500 assertEquals(Character.digit('F', 16), Short.valueOf("F", 16).byteValue());