Enum Class Dash

java.lang.Object
java.lang.Enum<Dash>
org.freeplane.api.Dash
All Implemented Interfaces:
Serializable, Comparable<Dash>, Constable

public enum Dash extends Enum<Dash>
  • Enum Constant Details

    • SOLID

      public static final Dash SOLID
    • CLOSE_DOTS

      public static final Dash CLOSE_DOTS
    • DASHES

      public static final Dash DASHES
    • DISTANT_DOTS

      public static final Dash DISTANT_DOTS
    • DOTS_AND_DASHES

      public static final Dash DOTS_AND_DASHES
  • Field Details

    • DEFAULT

      public static Dash DEFAULT
    • pattern

      public final int[] pattern
  • Method Details

    • values

      public static Dash[] 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 Dash 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
    • of

      public static Optional<Dash> of(int[] pattern)