Enum Class SymbolType

java.lang.Object
java.lang.Enum<SymbolType>
net.sourceforge.plantuml.hcl.SymbolType
All Implemented Interfaces:
Serializable, Comparable<SymbolType>, Constable

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

    • STRING_SIMPLE

      public static final SymbolType STRING_SIMPLE
    • STRING_QUOTED

      public static final SymbolType STRING_QUOTED
    • FUNCTION_NAME

      public static final SymbolType FUNCTION_NAME
    • SQUARE_BRACKET_OPEN

      public static final SymbolType SQUARE_BRACKET_OPEN
    • SQUARE_BRACKET_CLOSE

      public static final SymbolType SQUARE_BRACKET_CLOSE
    • CURLY_BRACKET_OPEN

      public static final SymbolType CURLY_BRACKET_OPEN
    • CURLY_BRACKET_CLOSE

      public static final SymbolType CURLY_BRACKET_CLOSE
    • PARENTHESIS_OPEN

      public static final SymbolType PARENTHESIS_OPEN
    • PARENTHESIS_CLOSE

      public static final SymbolType PARENTHESIS_CLOSE
    • TWO_POINTS

      public static final SymbolType TWO_POINTS
    • EQUALS

      public static final SymbolType EQUALS
    • COMMA

      public static final SymbolType COMMA
    • SPACE

      public static final SymbolType SPACE
  • Method Details

    • values

      public static SymbolType[] 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 SymbolType 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