All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xiaolyuh.serializer.SerializationUtils Maven / Gradle / Ivy

package com.github.xiaolyuh.serializer;

/**
 * 序列化工具类
 *
 * @author yuhao.wang3
 */
public abstract class SerializationUtils {

    static final byte[] EMPTY_ARRAY = new byte[0];

    static boolean isEmpty(byte[] data) {
        return (data == null || data.length == 0);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy