- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for toPrimitiveByte (0.05 sec)
-
src/main/java/org/codelibs/core/convert/ByteConversionUtil.java
*/ public static byte toPrimitiveByte(final Object o) { return toPrimitiveByte(o, null); } /** * Converts to {@literal byte}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@literal byte} */ public static byte toPrimitiveByte(final Object o, final String pattern) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/ByteConversionUtilTest.java
*/ public void testToPrimitiveByte() throws Exception { assertEquals(100, ByteConversionUtil.toPrimitiveByte("100")); } /** * @throws Exception */ public void testToPrimitiveByte_emptyString() throws Exception { assertEquals(0, ByteConversionUtil.toPrimitiveByte("")); } /** * @throws Exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 1.4K bytes - Viewed (0)