com.alachisoft.ncache.runtime.dependencies
Enum CmdParamsDbType

java.lang.Object
  extended by java.lang.Enum<CmdParamsDbType>
      extended by com.alachisoft.ncache.runtime.dependencies.CmdParamsDbType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CmdParamsDbType>

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


Enum Constant Summary
AnsiString
           
AnsiStringFixedLength
           
Binary
           
Boolean
           
Byte
           
Currency
           
Date
           
DateTime
           
DateTime2
           
DateTimeOffset
           
Decimal
           
Double
           
Guid
           
Int16
           
Int32
           
Int64
           
Object
           
SByte
           
Single
           
String
           
StringFixedLength
           
Time
           
UInt16
           
UInt32
           
UInt64
           
VarNumeric
           
Xml
           
 
Method Summary
static CmdParamsDbType getCmdParamsDbType(int value)
           
static CmdParamsDbType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CmdParamsDbType[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

AnsiString

public static final CmdParamsDbType AnsiString

AnsiStringFixedLength

public static final CmdParamsDbType AnsiStringFixedLength

Binary

public static final CmdParamsDbType Binary

Boolean

public static final CmdParamsDbType Boolean

Byte

public static final CmdParamsDbType Byte

Currency

public static final CmdParamsDbType Currency

Date

public static final CmdParamsDbType Date

DateTime

public static final CmdParamsDbType DateTime

DateTime2

public static final CmdParamsDbType DateTime2

DateTimeOffset

public static final CmdParamsDbType DateTimeOffset

Decimal

public static final CmdParamsDbType Decimal

Double

public static final CmdParamsDbType Double

Guid

public static final CmdParamsDbType Guid

Int16

public static final CmdParamsDbType Int16

Int32

public static final CmdParamsDbType Int32

Int64

public static final CmdParamsDbType Int64

Object

public static final CmdParamsDbType Object

SByte

public static final CmdParamsDbType SByte

Single

public static final CmdParamsDbType Single

String

public static final CmdParamsDbType String

StringFixedLength

public static final CmdParamsDbType StringFixedLength

Time

public static final CmdParamsDbType Time

UInt16

public static final CmdParamsDbType UInt16

UInt32

public static final CmdParamsDbType UInt32

UInt64

public static final CmdParamsDbType UInt64

VarNumeric

public static final CmdParamsDbType VarNumeric

Xml

public static final CmdParamsDbType Xml
Method Detail

getCmdParamsDbType

public static CmdParamsDbType getCmdParamsDbType(int value)
                                          throws ArgumentException
Throws:
ArgumentException

valueOf

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

values

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

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