Package eu.bandm.tools.util
Class Vt100
java.lang.Object
eu.bandm.tools.util.Vt100
Supplies escape codes for modifying the appearance of subsequent text
on a "VT-100" terminal, which is a widely used standard.
Most recent standard is ISO/IEC 6429.
See the unix command "man screen"
See also https://www2.ccs.neu.edu/research/gpc/VonaUtils/vona/terminal/vtansi.htm.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Starts bold text, until "normal" is issued.static final String
The escape character.static final String
Starts inverse video, until "normal" is issued.static final String
Ends bold, inverse and colored video/text.static final String
Starts red foreground color, until "normal" is issued.static final String
Starts underlined text, until "end underline" is issued.static final String
Ends underlined text.static final String
Starts yellow foreground color, until "normal" is issued. -
Method Summary
-
Field Details
-
ESC
The escape character.- See Also:
-
INV
Starts inverse video, until "normal" is issued. Corresponds to "mr" from termcaps.- See Also:
-
BOLD
Starts bold text, until "normal" is issued. Corresponds to "md" from termcaps.- See Also:
-
NORM
Ends bold, inverse and colored video/text. Corresponds to "me" from termcaps.- See Also:
-
ULIN
Starts underlined text, until "end underline" is issued. Corresponds to "ulin" / "us" from termcaps.- See Also:
-
ULIN_END
Ends underlined text. Corresponds to "ulin" / "ue" from termcaps.- See Also:
-
RED
Starts red foreground color, until "normal" is issued. Corresponds to "setF" / "Sf" from terminfo.- See Also:
-
YELLOW
Starts yellow foreground color, until "normal" is issued. Corresponds to "setF" / "Sf" from terminfo.- See Also:
-