com.stimulsoft.base.system.type
Enum StiRangeTypeEnum

java.lang.Object
  extended by java.lang.Enum<StiRangeTypeEnum>
      extended by com.stimulsoft.base.system.type.StiRangeTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiRangeTypeEnum>

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


Enum Constant Summary
StimulsoftByteRange
           
StimulsoftCharRange
           
StimulsoftDateTimeRange
           
StimulsoftDecimalRange
           
StimulsoftDoubleRange
           
StimulsoftFloatRange
           
StimulsoftGuidRange
           
StimulsoftIntRange
           
StimulsoftLongRange
           
StimulsoftShortRange
           
StimulsoftStringRange
           
StimulsoftTimeSpanRange
           
 
Method Summary
static boolean exist(java.lang.String systemTypeName)
           
static StiSystemType getSystemType(java.lang.String systemTypeName)
           
 java.lang.Object getValueByString(java.lang.String str)
           
 StiSystemType newInstance()
           
 StiTypeValue newInstance(java.lang.Class<? extends StiTypeValue> systemClass)
           
static StiRangeTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiRangeTypeEnum[] 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

StimulsoftStringRange

public static final StiRangeTypeEnum StimulsoftStringRange

StimulsoftFloatRange

public static final StiRangeTypeEnum StimulsoftFloatRange

StimulsoftDoubleRange

public static final StiRangeTypeEnum StimulsoftDoubleRange

StimulsoftDecimalRange

public static final StiRangeTypeEnum StimulsoftDecimalRange

StimulsoftDateTimeRange

public static final StiRangeTypeEnum StimulsoftDateTimeRange

StimulsoftTimeSpanRange

public static final StiRangeTypeEnum StimulsoftTimeSpanRange

StimulsoftByteRange

public static final StiRangeTypeEnum StimulsoftByteRange

StimulsoftShortRange

public static final StiRangeTypeEnum StimulsoftShortRange

StimulsoftIntRange

public static final StiRangeTypeEnum StimulsoftIntRange

StimulsoftLongRange

public static final StiRangeTypeEnum StimulsoftLongRange

StimulsoftCharRange

public static final StiRangeTypeEnum StimulsoftCharRange

StimulsoftGuidRange

public static final StiRangeTypeEnum StimulsoftGuidRange
Method Detail

values

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

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

valueOf

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

newInstance

public StiSystemType newInstance()

getValueByString

public java.lang.Object getValueByString(java.lang.String str)

newInstance

public StiTypeValue newInstance(java.lang.Class<? extends StiTypeValue> systemClass)

exist

public static boolean exist(java.lang.String systemTypeName)

getSystemType

public static StiSystemType getSystemType(java.lang.String systemTypeName)