net.sf.farrago.namespace.flatfile
Enum FlatFileBcpFile.BcpType

java.lang.Object
  extended by java.lang.Enum<FlatFileBcpFile.BcpType>
      extended by net.sf.farrago.namespace.flatfile.FlatFileBcpFile.BcpType
All Implemented Interfaces:
Serializable, Comparable<FlatFileBcpFile.BcpType>
Enclosing class:
FlatFileBcpFile

public static enum FlatFileBcpFile.BcpType
extends Enum<FlatFileBcpFile.BcpType>


Enum Constant Summary
SQLBIGINT
           
SQLBINARY
           
SQLBIT
           
SQLCHAR
           
SQLDATE
           
SQLDATETIM4
           
SQLDATETIME
           
SQLDECIMAL
           
SQLFLT4
           
SQLFLT8
           
SQLINT
           
SQLMONEY
           
SQLMONEY4
           
SQLNCHAR
           
SQLNUMERIC
           
SQLNVARCHAR
           
SQLREAL
           
SQLSMALLINT
           
SQLTIME
           
SQLTIMESTAMP
           
SQLTINYINT
           
SQLUDT
           
SQLUNIQUEID
           
SQLVARBINARY
           
SQLVARCHAR
           
SQLVARIANT
           
 
Method Summary
static FlatFileBcpFile.BcpType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FlatFileBcpFile.BcpType[] 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

SQLCHAR

public static final FlatFileBcpFile.BcpType SQLCHAR

SQLNCHAR

public static final FlatFileBcpFile.BcpType SQLNCHAR

SQLVARCHAR

public static final FlatFileBcpFile.BcpType SQLVARCHAR

SQLNVARCHAR

public static final FlatFileBcpFile.BcpType SQLNVARCHAR

SQLBINARY

public static final FlatFileBcpFile.BcpType SQLBINARY

SQLVARBINARY

public static final FlatFileBcpFile.BcpType SQLVARBINARY

SQLDATE

public static final FlatFileBcpFile.BcpType SQLDATE

SQLTIME

public static final FlatFileBcpFile.BcpType SQLTIME

SQLDATETIME

public static final FlatFileBcpFile.BcpType SQLDATETIME

SQLDATETIM4

public static final FlatFileBcpFile.BcpType SQLDATETIM4

SQLTIMESTAMP

public static final FlatFileBcpFile.BcpType SQLTIMESTAMP

SQLDECIMAL

public static final FlatFileBcpFile.BcpType SQLDECIMAL

SQLNUMERIC

public static final FlatFileBcpFile.BcpType SQLNUMERIC

SQLMONEY

public static final FlatFileBcpFile.BcpType SQLMONEY

SQLMONEY4

public static final FlatFileBcpFile.BcpType SQLMONEY4

SQLTINYINT

public static final FlatFileBcpFile.BcpType SQLTINYINT

SQLSMALLINT

public static final FlatFileBcpFile.BcpType SQLSMALLINT

SQLINT

public static final FlatFileBcpFile.BcpType SQLINT

SQLBIGINT

public static final FlatFileBcpFile.BcpType SQLBIGINT

SQLREAL

public static final FlatFileBcpFile.BcpType SQLREAL

SQLFLT4

public static final FlatFileBcpFile.BcpType SQLFLT4

SQLFLT8

public static final FlatFileBcpFile.BcpType SQLFLT8

SQLBIT

public static final FlatFileBcpFile.BcpType SQLBIT

SQLVARIANT

public static final FlatFileBcpFile.BcpType SQLVARIANT

SQLUDT

public static final FlatFileBcpFile.BcpType SQLUDT

SQLUNIQUEID

public static final FlatFileBcpFile.BcpType SQLUNIQUEID
Method Detail

values

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

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

valueOf

public static FlatFileBcpFile.BcpType 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