Enum Separator
- java.lang.Object
- 
- java.lang.Enum<Separator>
- 
- com.orchestranetworks.addon.dex.configuration.Separator
 
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COMMASpecifies the comma character used as separator.LINE_RETURNSpecifies the line return used as separator.SEMICOLONSpecifies the semicolon character used as separator.SPACESpecifies the space used as separator.TABSpecifies the tab used as separator.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSeparatorCharacter()Returns this separator character.static SeparatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Separator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
COMMApublic static final Separator COMMA Specifies the comma character used as separator.
 - 
SEMICOLONpublic static final Separator SEMICOLON Specifies the semicolon character used as separator.
 - 
SPACEpublic static final Separator SPACE Specifies the space used as separator.
 - 
TABpublic static final Separator TAB Specifies the tab used as separator.
 - 
LINE_RETURNpublic static final Separator LINE_RETURN Specifies the line return used as separator.
 
- 
 - 
Method Detail- 
valuespublic static Separator[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Separator c : Separator.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Separator valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getSeparatorCharacterpublic java.lang.String getSeparatorCharacter() Returns this separator character.
 
- 
 
-