com.stimulsoft.report.viewer
Enum StiPreviewSettings

java.lang.Object
  extended by java.lang.Enum<StiPreviewSettings>
      extended by com.stimulsoft.report.viewer.StiPreviewSettings
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiPreviewSettings>

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


Enum Constant Summary
All
           
Bookmarks
           
Close
           
ContextMenu
           
Editor
           
EditorTool
           
Export
           
Find
           
FindTool
           
HandTool
           
HorScrollBar
           
None
           
Open
           
PageControl
           
PageDelete
           
PageDesign
           
PageNew
           
PageSize
           
PageViewMode
           
Print
           
Save
           
SelectTool
           
SendEMail
           
StatusBar
           
Thumbs
           
Toolbar
           
VertScrollBar
           
Zoom
           
 
Field Summary
static java.lang.String ALL
           
 
Method Summary
static StiPreviewSettings forValue(int value)
           
 int getValue()
           
static StiPreviewSettings valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiPreviewSettings[] 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

All

public static final StiPreviewSettings All

None

public static final StiPreviewSettings None

PageViewMode

public static final StiPreviewSettings PageViewMode

VertScrollBar

public static final StiPreviewSettings VertScrollBar

HorScrollBar

public static final StiPreviewSettings HorScrollBar

StatusBar

public static final StiPreviewSettings StatusBar

Print

public static final StiPreviewSettings Print

Open

public static final StiPreviewSettings Open

Save

public static final StiPreviewSettings Save

Export

public static final StiPreviewSettings Export

SendEMail

public static final StiPreviewSettings SendEMail

PageNew

public static final StiPreviewSettings PageNew

PageDelete

public static final StiPreviewSettings PageDelete

PageDesign

public static final StiPreviewSettings PageDesign

PageSize

public static final StiPreviewSettings PageSize

SelectTool

public static final StiPreviewSettings SelectTool

HandTool

public static final StiPreviewSettings HandTool

EditorTool

public static final StiPreviewSettings EditorTool

FindTool

public static final StiPreviewSettings FindTool

Editor

public static final StiPreviewSettings Editor

Find

public static final StiPreviewSettings Find

Zoom

public static final StiPreviewSettings Zoom

PageControl

public static final StiPreviewSettings PageControl

Bookmarks

public static final StiPreviewSettings Bookmarks

Thumbs

public static final StiPreviewSettings Thumbs

ContextMenu

public static final StiPreviewSettings ContextMenu

Close

public static final StiPreviewSettings Close

Toolbar

public static final StiPreviewSettings Toolbar
Field Detail

ALL

public static final java.lang.String ALL
See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

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

getValue

public int getValue()

forValue

public static StiPreviewSettings forValue(int value)