org.pentaho.di.trans.steps.textfileinput
Enum EncodingType

java.lang.Object
  extended by java.lang.Enum<EncodingType>
      extended by org.pentaho.di.trans.steps.textfileinput.EncodingType
All Implemented Interfaces:
Serializable, Comparable<EncodingType>

public enum EncodingType
extends Enum<EncodingType>


Enum Constant Summary
DOUBLE_BIG_ENDIAN
           
DOUBLE_LITTLE_ENDIAN
           
SINGLE
           
 
Method Summary
 int getBom()
           
 byte[] getBytes(String string, String encoding)
           
 int getCarriageReturnChar()
           
 int getLength()
           
 int getLineFeedChar()
           
static EncodingType guessEncodingType(String encoding)
           
 boolean isLinefeed(int c)
           
 boolean isReturn(int c)
           
static EncodingType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EncodingType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SINGLE

public static final EncodingType SINGLE

DOUBLE_BIG_ENDIAN

public static final EncodingType DOUBLE_BIG_ENDIAN

DOUBLE_LITTLE_ENDIAN

public static final EncodingType DOUBLE_LITTLE_ENDIAN
Method Detail

values

public static EncodingType[] 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 (EncodingType c : EncodingType.values())
    System.out.println(c);

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

valueOf

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

getLength

public int getLength()

getBom

public int getBom()

getCarriageReturnChar

public int getCarriageReturnChar()

getLineFeedChar

public int getLineFeedChar()

isReturn

public boolean isReturn(int c)

isLinefeed

public boolean isLinefeed(int c)

guessEncodingType

public static EncodingType guessEncodingType(String encoding)

getBytes

public byte[] getBytes(String string,
                       String encoding)
                throws UnsupportedEncodingException
Throws:
UnsupportedEncodingException