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

net.sourceforge.plantumldependency.common.constants.CharacterConstants Maven / Gradle / Ivy

/*
 CharacterConstants.java
 Creation date : 24/03/2007
 Copyright © Benjamin Croizet ([email protected])

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 or GNU Lesser General Public License as published by the
 Free Software Foundation; either version 3 of the License,
 or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received copies of the GNU General Public License
 and GNU Lesser General Public License along with this program;
 if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 http://www.fsf.org/licensing/licenses/gpl.html
 http://www.gnu.org/licenses/lgpl.html
 */

package net.sourceforge.plantumldependency.common.constants;

/**
 * The class which stores all necessary char constants as Strings.
 *
 * @author Benjamin Croizet ( character. */
    public static final String SUPERIOR_CHAR = ">";

    /** The string representing the tab character. */
    public static final String TAB_CHAR = "\t";

    /** The string array representing all upper case characters of the alphabet. */
    public static final String[] UPPER_ALPHABET_CHAR = {"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"};

    /**
     * Private constructor to prevent from instantiation.
     *
     * @since 1.3.0
     */
    private CharacterConstants() {
        super();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy