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

com.rafaskoberg.gdx.typinglabel.TokenDelimiter Maven / Gradle / Ivy

package com.rafaskoberg.gdx.typinglabel;

/**
 * Enum that lists all supported delimiters for tokens.
 */
public enum TokenDelimiter {
    /** {TOKEN} */
    CURLY_BRACKETS('{', '}'),

    /** [TOKEN] */
    BRACKETS('[', ']'),

    /** (TOKEN) */
    PARENTHESES('(', ')');

    public final char open;
    public final char close;

    TokenDelimiter(char open, char close) {
        this.open = open;
        this.close = close;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy