private static void print()

in tools/SymbolsRange.java [177:188]


    private static void print(RangeType rangeType) {
        Formatter[] formatters = rangeType == RangeType.I18N_ASTRAL ? new Formatter[] { Formatter.STRING, Formatter.NUMERIC } :
            new Formatter[] { Formatter.STRING };
        for (Formatter formatter : formatters) {
            printRange(rangeType, formatter,  ALPHA, "LETTERS");
            printRange(rangeType, formatter,  and(IGNORABLE, not(ZERO_WIDTH_JOINER)), "IGNORABLE_SYMBOLS");
            printRange(rangeType, formatter,  DIACRITICS, "DIACRITICS");
            printRange(rangeType, formatter,  DIGIT, "DIGITS");
            printRange(rangeType, formatter, or(ALPHA, DIACRITICS), "LETTERS_AND_DIACRITICS");
            printRange(rangeType, formatter, or(ALPHA, DIACRITICS, DIGIT), "LETTERS_DIGITS_AND_DIACRITICS");
        }
    }