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

com.github.springframework.boot.commons.util.CharConstants Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.springframework.boot.commons.util;

public enum CharConstants {

    AT('@'),

    DOT('.'),

    DASH('-'),

    COMMA(','),

    UNDERLINE('_'),

    ;

    private final char charValue;

    private final String stringValue;

    CharConstants(char charValue) {
        this.charValue = charValue;
        this.stringValue = String.valueOf(charValue);
    }

    public char charValue() {
        return charValue;
    }

    public String stringValue() {
        return stringValue;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy