com.stimulsoft.lib.enums
Enum StiTypeCode

java.lang.Object
  extended by java.lang.Enum<StiTypeCode>
      extended by com.stimulsoft.lib.enums.StiTypeCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiTypeCode>

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


Enum Constant Summary
Boolean
           
Byte
           
Char
           
DateTime
           
Decimal
           
Double
           
Int
           
Int16
           
Int32
           
Int64
           
Number
           
Object
           
SByte
           
Single
           
String
           
UInt
           
UInt16
           
UInt32
           
UInt64
           
 
Method Summary
static java.util.Hashtable<java.lang.String,StiTypeCode> getTypesList()
           
static StiTypeCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiTypeCode[] 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

Boolean

public static final StiTypeCode Boolean

DateTime

public static final StiTypeCode DateTime

Number

public static final StiTypeCode Number

Int

public static final StiTypeCode Int

UInt

public static final StiTypeCode UInt

String

public static final StiTypeCode String

Object

public static final StiTypeCode Object

Byte

public static final StiTypeCode Byte

Char

public static final StiTypeCode Char

Decimal

public static final StiTypeCode Decimal

Double

public static final StiTypeCode Double

Single

public static final StiTypeCode Single

SByte

public static final StiTypeCode SByte

Int16

public static final StiTypeCode Int16

Int32

public static final StiTypeCode Int32

Int64

public static final StiTypeCode Int64

UInt16

public static final StiTypeCode UInt16

UInt32

public static final StiTypeCode UInt32

UInt64

public static final StiTypeCode UInt64
Method Detail

values

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

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

valueOf

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

getTypesList

public static java.util.Hashtable<java.lang.String,StiTypeCode> getTypesList()