Enum Class SeparatorMode

java.lang.Object
java.lang.Enum<SeparatorMode>
com.github.weisj.jsvg.parser.SeparatorMode
All Implemented Interfaces:
Serializable, Comparable<SeparatorMode>, Constable

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

    • COMMA_ONLY

      public static final SeparatorMode COMMA_ONLY
    • WHITESPACE_ONLY

      public static final SeparatorMode WHITESPACE_ONLY
    • COMMA_AND_WHITESPACE

      public static final SeparatorMode COMMA_AND_WHITESPACE
  • Constructor Details

    • SeparatorMode

      private SeparatorMode()
  • Method Details

    • values

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