Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for toBinary (0.03 sec)

  1. src/main/java/org/codelibs/core/convert/BinaryConversionUtil.java

        }
    
        /**
         * Converts to a {@literal byte} array.
         *
         * @param o
         *            The object to convert
         * @return The {@literal byte} array
         */
        public static byte[] toBinary(final Object o) {
            if (o instanceof byte[]) {
                return (byte[]) o;
            } else if (o == null) {
                return null;
            } else {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top