com.stimulsoft.report.export.tools
Enum StiRtfExportMode

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

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

RTF format export mode Copyright Stimulsoft


Enum Constant Summary
Frame
           
TabbedText
           
Table
           
WinWord
           
 
Method Summary
static StiRtfExportMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiRtfExportMode[] 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

Table

public static final StiRtfExportMode Table

Frame

public static final StiRtfExportMode Frame

WinWord

public static final StiRtfExportMode WinWord

TabbedText

public static final StiRtfExportMode TabbedText
Method Detail

values

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

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

valueOf

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