com.stimulsoft.webdesigner.enums
Enum StiRequestFromUserType

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

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

Copyright Stimulsoft


Enum Constant Summary
ListBool
           
ListByte
           
ListChar
           
ListDateTime
           
ListDecimal
           
ListDouble
           
ListFloat
           
ListGuid
           
ListInt
           
ListLong
           
ListShort
           
ListString
           
ListTimeSpan
           
RangeByte
           
RangeChar
           
RangeDateTime
           
RangeDecimal
           
RangeDouble
           
RangeFloat
           
RangeGuid
           
RangeInt
           
RangeLong
           
RangeShort
           
RangeString
           
RangeTimeSpan
           
ValueBool
           
ValueByte
           
ValueChar
           
ValueDateTime
           
ValueDecimal
           
ValueDouble
           
ValueFloat
           
ValueGuid
           
ValueImage
           
ValueInt
           
ValueLong
           
ValueNullableBool
           
ValueNullableByte
           
ValueNullableChar
           
ValueNullableDateTime
           
ValueNullableDecimal
           
ValueNullableDouble
           
ValueNullableFloat
           
ValueNullableGuid
           
ValueNullableInt
           
ValueNullableLong
           
ValueNullableSbyte
           
ValueNullableShort
           
ValueNullableTimeSpan
           
ValueNullableUint
           
ValueNullableUlong
           
ValueNullableUshort
           
ValueSbyte
           
ValueShort
           
ValueString
           
ValueTimeSpan
           
ValueUint
           
ValueUlong
           
ValueUshort
           
 
Method Summary
static StiRequestFromUserType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiRequestFromUserType[] 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

ListBool

public static final StiRequestFromUserType ListBool

ListChar

public static final StiRequestFromUserType ListChar

ListDateTime

public static final StiRequestFromUserType ListDateTime

ListTimeSpan

public static final StiRequestFromUserType ListTimeSpan

ListDecimal

public static final StiRequestFromUserType ListDecimal

ListFloat

public static final StiRequestFromUserType ListFloat

ListDouble

public static final StiRequestFromUserType ListDouble

ListByte

public static final StiRequestFromUserType ListByte

ListShort

public static final StiRequestFromUserType ListShort

ListInt

public static final StiRequestFromUserType ListInt

ListLong

public static final StiRequestFromUserType ListLong

ListGuid

public static final StiRequestFromUserType ListGuid

ListString

public static final StiRequestFromUserType ListString

RangeChar

public static final StiRequestFromUserType RangeChar

RangeDateTime

public static final StiRequestFromUserType RangeDateTime

RangeDouble

public static final StiRequestFromUserType RangeDouble

RangeFloat

public static final StiRequestFromUserType RangeFloat

RangeDecimal

public static final StiRequestFromUserType RangeDecimal

RangeGuid

public static final StiRequestFromUserType RangeGuid

RangeByte

public static final StiRequestFromUserType RangeByte

RangeShort

public static final StiRequestFromUserType RangeShort

RangeInt

public static final StiRequestFromUserType RangeInt

RangeLong

public static final StiRequestFromUserType RangeLong

RangeString

public static final StiRequestFromUserType RangeString

RangeTimeSpan

public static final StiRequestFromUserType RangeTimeSpan

ValueBool

public static final StiRequestFromUserType ValueBool

ValueChar

public static final StiRequestFromUserType ValueChar

ValueDateTime

public static final StiRequestFromUserType ValueDateTime

ValueFloat

public static final StiRequestFromUserType ValueFloat

ValueDouble

public static final StiRequestFromUserType ValueDouble

ValueDecimal

public static final StiRequestFromUserType ValueDecimal

ValueGuid

public static final StiRequestFromUserType ValueGuid

ValueImage

public static final StiRequestFromUserType ValueImage

ValueString

public static final StiRequestFromUserType ValueString

ValueTimeSpan

public static final StiRequestFromUserType ValueTimeSpan

ValueShort

public static final StiRequestFromUserType ValueShort

ValueInt

public static final StiRequestFromUserType ValueInt

ValueLong

public static final StiRequestFromUserType ValueLong

ValueSbyte

public static final StiRequestFromUserType ValueSbyte

ValueUshort

public static final StiRequestFromUserType ValueUshort

ValueUint

public static final StiRequestFromUserType ValueUint

ValueUlong

public static final StiRequestFromUserType ValueUlong

ValueByte

public static final StiRequestFromUserType ValueByte

ValueNullableBool

public static final StiRequestFromUserType ValueNullableBool

ValueNullableChar

public static final StiRequestFromUserType ValueNullableChar

ValueNullableDateTime

public static final StiRequestFromUserType ValueNullableDateTime

ValueNullableFloat

public static final StiRequestFromUserType ValueNullableFloat

ValueNullableDouble

public static final StiRequestFromUserType ValueNullableDouble

ValueNullableDecimal

public static final StiRequestFromUserType ValueNullableDecimal

ValueNullableGuid

public static final StiRequestFromUserType ValueNullableGuid

ValueNullableTimeSpan

public static final StiRequestFromUserType ValueNullableTimeSpan

ValueNullableShort

public static final StiRequestFromUserType ValueNullableShort

ValueNullableInt

public static final StiRequestFromUserType ValueNullableInt

ValueNullableLong

public static final StiRequestFromUserType ValueNullableLong

ValueNullableSbyte

public static final StiRequestFromUserType ValueNullableSbyte

ValueNullableUshort

public static final StiRequestFromUserType ValueNullableUshort

ValueNullableUint

public static final StiRequestFromUserType ValueNullableUint

ValueNullableUlong

public static final StiRequestFromUserType ValueNullableUlong

ValueNullableByte

public static final StiRequestFromUserType ValueNullableByte
Method Detail

values

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

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

valueOf

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