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

com.hazelcast.util.EmptyArrays Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
package com.hazelcast.util;

/**
 * Empty array constants.
 */
public final class EmptyArrays {
    /**
     * Two dimensional empty array.
     */
    public static final Object[][] EMPTY_2D_OBJECT_ARRAY = new Object[0][0];

    private EmptyArrays() {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy