com.stimulsoft.web.servlet
Enum StiHttpParam

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

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

Набор обробатываемых параметров передаваемых сервлету в запросе. Copyright Stimulsoft


Enum Constant Summary
DesignerFx
          флеш-дизайнер.
ExportReport
           
JS
          javascript.
LoadConfiguration
          конфигурация.
LoadData
          возвращаемые данные в SQL запросе .
LoadDesignerReport
          загрузка отчета в дизайнере.
LoadLanguage
          загрузка отчета.
LoadReport
           
LoadViewerReport
          загрузка отчета в просмоторщике.
Player
          флеш-плеера.
PreviewReport
           
RetrieveColumns
          возвращаемые колонки в SQL запросе.
SaveReport
          сохранение отчета.
SendEmailReport
          отправка сообщений по почте.
TestConnection
          проверка коннекта.
ViewerFx
          флеш-просмоторщик.
 
Method Summary
static StiHttpParam valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiHttpParam[] 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

DesignerFx

public static final StiHttpParam DesignerFx
флеш-дизайнер. Истользуется непосредствеено в сервлете.


ViewerFx

public static final StiHttpParam ViewerFx
флеш-просмоторщик. Истользуется непосредствеено в сервлете.


Player

public static final StiHttpParam Player
флеш-плеера.


JS

public static final StiHttpParam JS
javascript.


LoadConfiguration

public static final StiHttpParam LoadConfiguration
конфигурация.


LoadReport

public static final StiHttpParam LoadReport

LoadDesignerReport

public static final StiHttpParam LoadDesignerReport
загрузка отчета в дизайнере.


LoadViewerReport

public static final StiHttpParam LoadViewerReport
загрузка отчета в просмоторщике.


LoadLanguage

public static final StiHttpParam LoadLanguage
загрузка отчета.


SaveReport

public static final StiHttpParam SaveReport
сохранение отчета.


TestConnection

public static final StiHttpParam TestConnection
проверка коннекта.


RetrieveColumns

public static final StiHttpParam RetrieveColumns
возвращаемые колонки в SQL запросе.


LoadData

public static final StiHttpParam LoadData
возвращаемые данные в SQL запросе .


SendEmailReport

public static final StiHttpParam SendEmailReport
отправка сообщений по почте.


PreviewReport

public static final StiHttpParam PreviewReport

ExportReport

public static final StiHttpParam ExportReport
Method Detail

values

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

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

valueOf

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