com.lowagie.text.rtf.parser.ctrlwords

Class RtfCtrlWordType

public final class RtfCtrlWordType extends Object

RtfCtrlWordType indicates the type of control word. RTF control words are divided up into: Destination, Flag, Value, Toggle, Symbol. Destination: The current destination for values and text to be sent. Flag: 0/1 value types. Represents true/false, on/off value types. Toggle: Flips a Flag value on/off. Value: an Integer value data type. (Exception: Some control words this is a long data value type) Symbol: Special RTF characters such as \{, \} and others.

Since: 2.0.8

Author: Howard Shank (hgshank@yahoo.com)

Field Summary
static intDESTINATION
Control word is a destination.
static intDESTINATION_EX
Control word is a newer destination.
static intFLAG
Control word is a flag.
static intSYMBOL
Control word is a special symbol.
static intTOGGLE
Control word is a flag toggle.
static intUNIDENTIFIED
Control word is unidentified.
static intVALUE
Control word is a value.

Field Detail

DESTINATION

public static final int DESTINATION
Control word is a destination.

DESTINATION_EX

public static final int DESTINATION_EX
Control word is a newer destination.

FLAG

public static final int FLAG
Control word is a flag.

SYMBOL

public static final int SYMBOL
Control word is a special symbol.

TOGGLE

public static final int TOGGLE
Control word is a flag toggle.

UNIDENTIFIED

public static final int UNIDENTIFIED
Control word is unidentified.

VALUE

public static final int VALUE
Control word is a value.