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

shz.ArrayConstant Maven / Gradle / Ivy

package shz;

public interface ArrayConstant {
    Object[] EMPTY_OBJECT_ARRAY = new Object[0];
    String[] EMPTY_STRING_ARRAY = new String[0];

    boolean[] EMPTY_BOOLEAN_ARRAY = new boolean[0];
    byte[] EMPTY_BYTE_ARRAY = new byte[0];
    char[] EMPTY_CHAR_ARRAY = new char[0];
    short[] EMPTY_SHORT_ARRAY = new short[0];
    int[] EMPTY_INT_ARRAY = new int[0];
    long[] EMPTY_LONG_ARRAY = new long[0];
    double[] EMPTY_DOUBLE_ARRAY = new double[0];
    float[] EMPTY_FLOAT_ARRAY = new float[0];

    char[] ARRAY_2 = {'0', '1'};
    char[] ARRAY_8 = {'0', '1', '2', '3', '4', '5', '6', '7'};
    char[] ARRAY_10 = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
    char[] ARRAY_16 = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
    char[] ARRAY_62 = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
            'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c',
            'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x',
            'y', 'z'};
    char[] ARRAY_94 = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
            'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c',
            'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x',
            'y', 'z', '!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', ':', ';', '<', '=',
            '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~'};
    char[] UPPERCASE = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q',
            'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};
    char[] LOWERCASE = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
            'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
    char[] SYMBOL = {'!', '"', '#', '$', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', ':', ';',
            '<', '=', '>', '?', '@', '[', '\\', ']', '^', '_', '`', '{', '|', '}', '~'};
    char[] INT_IP = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.'};
    char[] DOMAIN = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
            'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '.', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
    char[] SIMPLE_URL = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q',
            'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '/', '_', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.', '-'};

    char[] NULL = {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy