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

com.blazebit.regex.node.CharNode Maven / Gradle / Ivy

package com.blazebit.regex.node;

public class CharNode extends AbstractNode {

    private final char character;

    public CharNode(char character) {
        this.character = character;
    }

    public char getCharacter() {
        return character;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy