- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ByteConversionUtil (0.08 sec)
-
src/main/java/org/codelibs/core/convert/ByteConversionUtil.java
import org.codelibs.core.text.DecimalFormatUtil; /** * Utility class for conversions related to {@link Byte}. * * @author higa */ public abstract class ByteConversionUtil { /** * Do not instantiate. */ protected ByteConversionUtil() { } /** * Converts to {@link Byte}. * * @param o * The object to convert * @return The converted {@link Byte}
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/main/java/org/codelibs/core/convert/NumberConversionUtil.java
return ShortConversionUtil.toShort(o); } else if (type == BigInteger.class) { return BigIntegerConversionUtil.toBigInteger(o); } else if (type == Byte.class) { return ByteConversionUtil.toByte(o); } return o; } /** * Converts to the wrapper type corresponding to the specified primitive type. * * @param type * Primitive type
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0)