com.devexperts.qd.qtp.text
Enum TextDelimiters

java.lang.Object
  extended by java.lang.Enum<TextDelimiters>
      extended by com.devexperts.qd.qtp.text.TextDelimiters
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TextDelimiters>

public enum TextDelimiters
extends java.lang.Enum<TextDelimiters>


Enum Constant Summary
COMMA_SEPARATED
           
TAB_SEPARATED
           
 
Field Summary
 java.lang.String describePrefix
           
 char describePrefixChar
           
 java.lang.String fieldSeparator
           
 char fieldSeparatorChar
           
 java.lang.String messageTypePrefix
           
 
Method Summary
static TextDelimiters valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TextDelimiters[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TAB_SEPARATED

public static final TextDelimiters TAB_SEPARATED

COMMA_SEPARATED

public static final TextDelimiters COMMA_SEPARATED
Field Detail

describePrefixChar

public final char describePrefixChar

fieldSeparatorChar

public final char fieldSeparatorChar

messageTypePrefix

public final java.lang.String messageTypePrefix

describePrefix

public final java.lang.String describePrefix

fieldSeparator

public final java.lang.String fieldSeparator
Method Detail

values

public static final TextDelimiters[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(TextDelimiters c : TextDelimiters.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static TextDelimiters 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