com.stimulsoft.web.utils
Enum StiConstants

java.lang.Object
  extended by java.lang.Enum<StiConstants>
      extended by com.stimulsoft.web.utils.StiConstants
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiConstants>

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

Надор констант приложения. Copyright Stimulsoft


Enum Constant Summary
ENCODING
          Кодировка.
FILE_NAME_CONFIGURE_PROPERTIES
          Имя файла соержащего конфигурационные настройки приложения.
STIMULSOFT_CLIENT_KEY
          Основной ключ для передачи даных при вызове сервлета .
STIMULSOFT_DESIGNER
          Ключ определяющий что работа ведется с designer.
STIMULSOFT_DIR_PATERN
          Ключ для подстановки в проперти файлах основной директории приложения.
STIMULSOFT_LOAD_DATA_KEY
          Ключ для передачи даных при загрузке данных отчета.
STIMULSOFT_REPORT_KEY
          Ключ для передачи даных при загрузке отчета.(используется для обмена именем отчета в пользовательской сессии).
STIMULSOFT_SAVE_KEY
          Ключ для передачи даных при сохранении отчета.
STIMULSOFT_VIEWER
          Ключ определяющий что работа ведется с viewer.
SUCCESSFULL
          Сообщенее об успешном завершени.
 
Field Summary
 java.lang.String value
           
 
Method Summary
 java.lang.String toString()
           
static StiConstants valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiConstants[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FILE_NAME_CONFIGURE_PROPERTIES

public static final StiConstants FILE_NAME_CONFIGURE_PROPERTIES
Имя файла соержащего конфигурационные настройки приложения.


STIMULSOFT_DIR_PATERN

public static final StiConstants STIMULSOFT_DIR_PATERN
Ключ для подстановки в проперти файлах основной директории приложения.


ENCODING

public static final StiConstants ENCODING
Кодировка.


STIMULSOFT_SAVE_KEY

public static final StiConstants STIMULSOFT_SAVE_KEY
Ключ для передачи даных при сохранении отчета.


STIMULSOFT_LOAD_DATA_KEY

public static final StiConstants STIMULSOFT_LOAD_DATA_KEY
Ключ для передачи даных при загрузке данных отчета.


STIMULSOFT_REPORT_KEY

public static final StiConstants STIMULSOFT_REPORT_KEY
Ключ для передачи даных при загрузке отчета.(используется для обмена именем отчета в пользовательской сессии).


STIMULSOFT_CLIENT_KEY

public static final StiConstants STIMULSOFT_CLIENT_KEY
Основной ключ для передачи даных при вызове сервлета .


SUCCESSFULL

public static final StiConstants SUCCESSFULL
Сообщенее об успешном завершени.


STIMULSOFT_DESIGNER

public static final StiConstants STIMULSOFT_DESIGNER
Ключ определяющий что работа ведется с designer.


STIMULSOFT_VIEWER

public static final StiConstants STIMULSOFT_VIEWER
Ключ определяющий что работа ведется с viewer.

Field Detail

value

public final java.lang.String value
Method Detail

values

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

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

valueOf

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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<StiConstants>