de.bottlecaps.markup.blitz.grammar.Mark Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of markup-blitz Show documentation
Show all versions of markup-blitz Show documentation
Markup Blitz Parser Generator
// Copyright (c) 2023-2024 Gunther Rademacher. Provided under the Apache 2 License.
package de.bottlecaps.markup.blitz.grammar;
public enum Mark {
NODE("^"),
ATTRIBUTE("@"),
DELETE("-"),
NONE("");
private String string;
private Mark(String string) {
this.string = string;
}
@Override
public String toString() {
return string;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy