com.businessobjects.rebean.wi
Class CellContentType

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

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

Warning: This class is no longer functional from the SAP BusinessObjects 4.0 release onwards.

CellContentType represents the different types of content that can be contained in a Cell object.

Since:
11.5
See Also:
Cell, TableCell, Image, Serialized Form

Field Summary
static int _HTML
          The int value of CellContentType.HTML.value()
static int _HYPERLINK
          The int value of CellContentType.HYPERLINK.value()
static int _IMAGE
          The int value of CellContentType.IMAGE.value()
static int _TEXT
          The int value of CellContentType.TEXT.value()
static CellContentType HTML
          The Cell contains HTML content.
static CellContentType HYPERLINK
          The Cell contains a hyperlink.
static CellContentType IMAGE
          The Cell contains an Image.
static CellContentType TEXT
          The Cell contains text content.
 
Method Summary
static CellContentType fromInt(int value)
          Returns a CellContentType instance corresponding to the integer value passed as a parameter.
 java.lang.String toString()
          The String value of a CellContentType instance.
 int value()
          The int value of a CellContentType instance.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_TEXT

public static final int _TEXT
The int value of CellContentType.TEXT.value()

See Also:
Constant Field Values

_HYPERLINK

public static final int _HYPERLINK
The int value of CellContentType.HYPERLINK.value()

See Also:
Constant Field Values

_HTML

public static final int _HTML
The int value of CellContentType.HTML.value()

See Also:
Constant Field Values

_IMAGE

public static final int _IMAGE
The int value of CellContentType.IMAGE.value()

See Also:
Constant Field Values

TEXT

public static final CellContentType TEXT
The Cell contains text content.


HYPERLINK

public static final CellContentType HYPERLINK
The Cell contains a hyperlink.


HTML

public static final CellContentType HTML
The Cell contains HTML content.


IMAGE

public static final CellContentType IMAGE
The Cell contains an Image.

See Also:
Image
Method Detail

value

public int value()
The int value of a CellContentType instance.

Returns:
the int value of CellContentType instance.

toString

public java.lang.String toString()
The String value of a CellContentType instance.

Overrides:
toString in class java.lang.Object
Returns:
the String value of a CellContentType instance.

fromInt

public static CellContentType fromInt(int value)
Returns a CellContentType instance corresponding to the integer value passed as a parameter.

Returns:
a CellContentType instance corresponding to value. Returns null when value does not correspond to any CellContentType.