Enum Class Markup

java.lang.Object
java.lang.Enum<Markup>
com.linecorp.centraldogma.common.Markup
All Implemented Interfaces:
Serializable, Comparable<Markup>, java.lang.constant.Constable

public enum Markup extends Enum<Markup>
The markup language of a Commit message.
  • Enum Constant Details

    • UNKNOWN

      public static final Markup UNKNOWN
      Unknown markup language.
    • PLAINTEXT

      public static final Markup PLAINTEXT
      Plaintext.
    • MARKDOWN

      public static final Markup MARKDOWN
      Markdown.
  • Method Details

    • values

      public static Markup[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Markup valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • nameLowercased

      public String nameLowercased()
      Returns the lower-cased name.
    • parse

      public static Markup parse(@Nullable String value)
      Returns a Markup from the specified value. If none of markup is matched, this will return UNKNOWN.