com.stimulsoft.web.enums
Enum StiAction

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

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

Copyright Stimulsoft


Enum Constant Summary
Collapsing
          Applying the collapsing interaction for the report.
CreateReport
          Create the new report template in the designer
DesignReport
          Call the report designer from toolbar of the viewer.
DrillDown
          Applying the drill-down interaction for the report.
EmailReport
          Sending a report via Email.
Exit
          Call the Exit event from the viewer or designer.
ExportReport
          The exporting of the report.
GetImage
          Get the image of the report component which does not support the designer.
GetLocalization
          Get the localization file.
GetPages
          Request the necessary page of the report for viewer.
GetReport
          Request a report template for designer or report snapshot with parameters (number of pages, zoom, interactivity and others) for viewer.
GetReportCode
          Get the C#/VB.net code of the report template.
InitVars
          Request a report variables for variables panel of the viewer.
OpenReport
          The opening of the report.
PreviewReport
          Get the report snapshot for preview in the designer.
PrintReport
          The printing of the report.
RefreshReport
          Request to force rendering of the current report template.
ReportResource
          Get the resource content of the report.
Resource
          Request viewer resources - scripts, styles.
RetrieveColumns
          Get the data source columns using the Connection String and SQL query
RunCommand
          Run the designer's command, which is contained in the query or POST parameters.
SaveReport
          Save the report template from the designer.
Sorting
          Applying the sort interaction for the report.
TestConnection
          Test the connection string
Undefined
          Unknown action or incorrect data.
UpdateCache
          Update cache of the report on the server side, without any actions
Variables
          Applying the parameters (variable values) to the report.
 
Method Summary
static StiAction valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiAction[] 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

Undefined

public static final StiAction Undefined
Unknown action or incorrect data.


Resource

public static final StiAction Resource
Request viewer resources - scripts, styles.


PrintReport

public static final StiAction PrintReport
The printing of the report.


OpenReport

public static final StiAction OpenReport
The opening of the report.


ExportReport

public static final StiAction ExportReport
The exporting of the report.


EmailReport

public static final StiAction EmailReport
Sending a report via Email.


InitVars

public static final StiAction InitVars
Request a report variables for variables panel of the viewer.


GetReport

public static final StiAction GetReport
Request a report template for designer or report snapshot with parameters (number of pages, zoom, interactivity and others) for viewer.


RefreshReport

public static final StiAction RefreshReport
Request to force rendering of the current report template.


GetPages

public static final StiAction GetPages
Request the necessary page of the report for viewer.


Variables

public static final StiAction Variables
Applying the parameters (variable values) to the report.


Sorting

public static final StiAction Sorting
Applying the sort interaction for the report.


DrillDown

public static final StiAction DrillDown
Applying the drill-down interaction for the report.


Collapsing

public static final StiAction Collapsing
Applying the collapsing interaction for the report.


DesignReport

public static final StiAction DesignReport
Call the report designer from toolbar of the viewer.


GetLocalization

public static final StiAction GetLocalization
Get the localization file.


Exit

public static final StiAction Exit
Call the Exit event from the viewer or designer.


PreviewReport

public static final StiAction PreviewReport
Get the report snapshot for preview in the designer.


GetReportCode

public static final StiAction GetReportCode
Get the C#/VB.net code of the report template.


GetImage

public static final StiAction GetImage
Get the image of the report component which does not support the designer.


TestConnection

public static final StiAction TestConnection
Test the connection string


RetrieveColumns

public static final StiAction RetrieveColumns
Get the data source columns using the Connection String and SQL query


SaveReport

public static final StiAction SaveReport
Save the report template from the designer.


CreateReport

public static final StiAction CreateReport
Create the new report template in the designer


RunCommand

public static final StiAction RunCommand
Run the designer's command, which is contained in the query or POST parameters.


UpdateCache

public static final StiAction UpdateCache
Update cache of the report on the server side, without any actions


ReportResource

public static final StiAction ReportResource
Get the resource content of the report.

Method Detail

values

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

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

valueOf

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