java.lang.Object
java.lang.Enum<Separator>
com.orchestranetworks.addon.dex.configuration.Separator
All Implemented Interfaces:
Serializable, Comparable<Separator>, Constable

public enum Separator extends Enum<Separator>
Defines the possible separator characters.
Since:
2.3.0
  • Enum Constant Details

    • COMMA

      public static final Separator COMMA
      Specifies the comma character used as separator.
    • SEMICOLON

      public static final Separator SEMICOLON
      Specifies the semicolon character used as separator.
    • SPACE

      public static final Separator SPACE
      Specifies the space used as separator.
    • TAB

      public static final Separator TAB
      Specifies the tab used as separator.
    • LINE_RETURN

      public static final Separator LINE_RETURN
      Specifies the line return used as separator.
  • Method Details

    • values

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

      public static Separator valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getSeparatorCharacter

      public String getSeparatorCharacter()
      Returns this separator character.