com.businessobjects.rebean.wi
Class OutputFormatType

java.lang.Object
  extended by com.businessobjects.rebean.wi.OutputFormatType
All Implemented Interfaces:
java.io.Serializable

public final class OutputFormatType
extends java.lang.Object
implements java.io.Serializable

The OutputFormatType class represents all possible output formats.

See Also:
Serialized Form

Field Summary
static int _CSV
          Return an int value corresponding to the "CSV" OutputFormatType.
static int _DHTML
          Returns an int value corresponding to the "DHTML" OutputFormatType.
static int _HTML
          Returns an int value corresponding to the "HTML" OutputFormatType.
static int _MHTML
          Return an int value corresponding to the "MHTML" OutputFormatType.
static int _PDF
          Returns an int value corresponding to the "PDF" OutputFormatType.
static int _XLS
          Returns an int value corresponding to the "XLS" OutputFormatType.
static int _XLSDataCentric
          Return an int value corresponding to the "XLSDataCentric" OutputFormatType.
static int _XLSX
          Return an int value corresponding to the "XLSX" OutputFormatType.
static int _XLSXDataCentric
          Return an int value corresponding to the "XLSXDataCentric" OutputFormatType.
static int _XML
          Return an int value corresponding to the "XML" OutputFormatType.
static OutputFormatType CSV
          CSV output format.
static OutputFormatType DHTML
          Dynamic HTML output format.
static OutputFormatType HTML
          Deprecated.  
static OutputFormatType MHTML
          Multipurpose Internet Mail Extension HTML
static OutputFormatType PDF
          Portable Document Format output format.
static OutputFormatType XLS
          Native Excel output format.
static OutputFormatType XLSDataCentric
          DataCentric Excel format.
static OutputFormatType XLSX
          Native Excel 2007 output format.
static OutputFormatType XLSXDataCentric
          DataCentric Excel 2007 format.
static OutputFormatType XML
          XML output format.
 
Method Summary
static OutputFormatType from_int(int value)
          Create a OutputFormatType instance corresponding to value.
 java.lang.String toString()
          Return a String representation of this format type (for debug purposes).
 int value()
          Return an int value of this OutputFormatType instance.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_HTML

public static final int _HTML
Returns an int value corresponding to the "HTML" OutputFormatType.

See Also:
Constant Field Values

HTML

public static final OutputFormatType HTML
Deprecated. 
HTML output format. Only supported for WebI 6.5. applications.


_PDF

public static final int _PDF
Returns an int value corresponding to the "PDF" OutputFormatType.

See Also:
Constant Field Values

PDF

public static final OutputFormatType PDF
Portable Document Format output format.


_XLS

public static final int _XLS
Returns an int value corresponding to the "XLS" OutputFormatType.

See Also:
Constant Field Values

XLS

public static final OutputFormatType XLS
Native Excel output format. Documents saved in Excel format can be saved in 2 different ways DataCentric or WYSIWIG oriented. By using the XLS OutputFormatType, a document is WYSIWYG oriented, that is to say it is saved in such a way that the data presentation is enhanced.


_DHTML

public static final int _DHTML
Returns an int value corresponding to the "DHTML" OutputFormatType.

See Also:
Constant Field Values

DHTML

public static final OutputFormatType DHTML
Dynamic HTML output format.


_XML

public static final int _XML
Return an int value corresponding to the "XML" OutputFormatType.

See Also:
Constant Field Values

XML

public static final OutputFormatType XML
XML output format.


_XLSDataCentric

public static final int _XLSDataCentric
Return an int value corresponding to the "XLSDataCentric" OutputFormatType.

See Also:
Constant Field Values

XLSDataCentric

public static final OutputFormatType XLSDataCentric
DataCentric Excel format. Documents saved in Excel format can be saved in 2 different ways DataCentric or WYSIWIG oriented. By using the XLSDataCentric OutputFormatType, a document is data oriented, that is to say it is saved in such a way that the data manipulation is enhanced.

Since:
11.5

_CSV

public static final int _CSV
Return an int value corresponding to the "CSV" OutputFormatType.

See Also:
Constant Field Values

CSV

public static final OutputFormatType CSV
CSV output format.

Since:
11.5

_MHTML

public static final int _MHTML
Return an int value corresponding to the "MHTML" OutputFormatType.

See Also:
Constant Field Values

MHTML

public static final OutputFormatType MHTML
Multipurpose Internet Mail Extension HTML


_XLSX

public static final int _XLSX
Return an int value corresponding to the "XLSX" OutputFormatType.

See Also:
Constant Field Values

XLSX

public static final OutputFormatType XLSX
Native Excel 2007 output format. Documents saved in Excel 2007 format can be saved in 2 different ways DataCentric or WYSIWIG oriented. By using the XLSX OutputFormatType, a document is WYSIWYG oriented, that is to say it is saved in such a way that the data presentation is enhanced.

Since:
13

_XLSXDataCentric

public static final int _XLSXDataCentric
Return an int value corresponding to the "XLSXDataCentric" OutputFormatType.

See Also:
Constant Field Values

XLSXDataCentric

public static final OutputFormatType XLSXDataCentric
DataCentric Excel 2007 format. Documents saved in Excel format can be saved in 2 different ways DataCentric or WYSIWIG oriented. By using the XLSXDataCentric OutputFormatType, a document is data oriented, that is to say it is saved in such a way that the data manipulation is enhanced.

Since:
13
Method Detail

value

public int value()
Return an int value of this OutputFormatType instance.

Returns:
Return an int value of this OutputFormatType instance.

from_int

public static OutputFormatType from_int(int value)
Create a OutputFormatType instance corresponding to value.

Parameters:
value - An int value corresponding to a OutputFormatType.
Returns:
A OutputFormatType instance corresponding to value, or null when value does not correspond to a OutputFormatType.

toString

public java.lang.String toString()
Return a String representation of this format type (for debug purposes).

Overrides:
toString in class java.lang.Object
Returns:
a String representation of this format type (for debug purposes).