Class Vt100

java.lang.Object
eu.bandm.tools.util.Vt100

public class Vt100 extends Object
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 Details

    • ESC

      public static final String ESC
      The escape character.
      See Also:
    • INV

      public static final String INV
      Starts inverse video, until "normal" is issued. Corresponds to "mr" from termcaps.
      See Also:
    • BOLD

      public static final String BOLD
      Starts bold text, until "normal" is issued. Corresponds to "md" from termcaps.
      See Also:
    • NORM

      public static final String NORM
      Ends bold, inverse and colored video/text. Corresponds to "me" from termcaps.
      See Also:
    • ULIN

      public static final String ULIN
      Starts underlined text, until "end underline" is issued. Corresponds to "ulin" / "us" from termcaps.
      See Also:
    • ULIN_END

      public static final String ULIN_END
      Ends underlined text. Corresponds to "ulin" / "ue" from termcaps.
      See Also:
    • RED

      public static final String RED
      Starts red foreground color, until "normal" is issued. Corresponds to "setF" / "Sf" from terminfo.
      See Also:
    • YELLOW

      public static final String YELLOW
      Starts yellow foreground color, until "normal" is issued. Corresponds to "setF" / "Sf" from terminfo.
      See Also: