com.crystaldecisions.sdk.occa.report.definition
Class BooleanOutputFormat

java.lang.Object
  extended by com.crystaldecisions.sdk.occa.report.definition.BooleanOutputFormat

public final class BooleanOutputFormat
extends java.lang.Object

This class is used to specify the format of BooleanField values.


Field Summary
static int _oneOrZero
           1 (True) or 0 (False).
static int _TOrF
           T (True) or F (False).
static int _trueOrFalse
           True or False.
static int _yesOrNo
           Yes (True) or No (False).
static int _YOrN
           Y (True) or N (False).
static BooleanOutputFormat oneOrZero
           A BooleanOutputFormat object that specifies 1 (True) or 0 (False).
static BooleanOutputFormat TOrF
           A BooleanOutputFormat object that specifies T (True) or F (False).
static BooleanOutputFormat trueOrFalse
           A BooleanOutputFormat object that specifies True or False.
static BooleanOutputFormat yesOrNo
           A BooleanOutputFormat object that specifies Yes (True) or No (False).
static BooleanOutputFormat YOrN
           A BooleanOutputFormat object that specifies Y (True) or N (False).
 
Method Summary
static BooleanOutputFormat from_int(int i)
           Returns the BooleanOutputFormat object corresponding to the specified value.
static BooleanOutputFormat from_string(java.lang.String sVal)
           Returns the BooleanOutputFormat object corresponding to the specified type.
 java.lang.String toString()
           Returns the String value of this BooleanOutputFormat object.
 int value()
           Returns the int value of this BooleanOutputFormat object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

_trueOrFalse

public static final int _trueOrFalse

True or False.

See Also:
Constant Field Values

_TOrF

public static final int _TOrF

T (True) or F (False).

See Also:
Constant Field Values

_yesOrNo

public static final int _yesOrNo

Yes (True) or No (False).

See Also:
Constant Field Values

_YOrN

public static final int _YOrN

Y (True) or N (False).

See Also:
Constant Field Values

_oneOrZero

public static final int _oneOrZero

1 (True) or 0 (False).

See Also:
Constant Field Values

trueOrFalse

public static final BooleanOutputFormat trueOrFalse

A BooleanOutputFormat object that specifies True or False.


TOrF

public static final BooleanOutputFormat TOrF

A BooleanOutputFormat object that specifies T (True) or F (False).


yesOrNo

public static final BooleanOutputFormat yesOrNo

A BooleanOutputFormat object that specifies Yes (True) or No (False).


YOrN

public static final BooleanOutputFormat YOrN

A BooleanOutputFormat object that specifies Y (True) or N (False).


oneOrZero

public static final BooleanOutputFormat oneOrZero

A BooleanOutputFormat object that specifies 1 (True) or 0 (False).

Method Detail

from_int

public static final BooleanOutputFormat from_int(int i)

Returns the BooleanOutputFormat object corresponding to the specified value.

Parameters:
i - The int value of the desired BooleanOutputFormat object.
Returns:
The BooleanOutputFormat object corresponding to the specified value.

from_string

public static final BooleanOutputFormat from_string(java.lang.String sVal)

Returns the BooleanOutputFormat object corresponding to the specified type.

Parameters:
sVal - The String value of the desired BooleanOutputFormat object.
Returns:
The BooleanOutputFormat object corresponding to the specified type.

toString

public java.lang.String toString()

Returns the String value of this BooleanOutputFormat object.

Overrides:
toString in class java.lang.Object
Returns:
The String value of this BooleanOutputFormat object.

value

public int value()

Returns the int value of this BooleanOutputFormat object.

Returns:
The int value of this BooleanOutputFormat object.