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

de.bottlecaps.markup.blitz.grammar.Mark Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
// 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