Class RtfCtrlWordType
java.lang.Object
com.lowagie.text.rtf.parser.ctrlwords.RtfCtrlWordType
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
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Control word is a destination.static final int
Control word is a newer destination.static final int
Control word is a flag.static final int
Control word is a special symbol.static final int
Control word is a flag toggle.static final int
Control word is unidentified.static final int
Control word is a value. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
UNIDENTIFIED
public static final int UNIDENTIFIEDControl word is unidentified.- See Also:
-
DESTINATION
public static final int DESTINATIONControl word is a destination.- See Also:
-
DESTINATION_EX
public static final int DESTINATION_EXControl word is a newer destination.- See Also:
-
FLAG
public static final int FLAGControl word is a flag.- See Also:
-
VALUE
public static final int VALUEControl word is a value.- See Also:
-
TOGGLE
public static final int TOGGLEControl word is a flag toggle.- See Also:
-
SYMBOL
public static final int SYMBOLControl word is a special symbol.- See Also:
-
-
Constructor Details
-
RtfCtrlWordType
public RtfCtrlWordType()
-