org.antlr.v4.automata.CharactersDataCheckStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of antlr4 Show documentation
Show all versions of antlr4 Show documentation
The ANTLR 4 grammar compiler.
The newest version!
package org.antlr.v4.automata;
public class CharactersDataCheckStatus {
public final boolean collision;
public final boolean notImpliedCharacters;
public CharactersDataCheckStatus(boolean collision, boolean notImpliedCharacters) {
this.collision = collision;
this.notImpliedCharacters = notImpliedCharacters;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy