public static enum Attributes.ControlChar extends Enum<Attributes.ControlChar>
Enum Constant and Description |
---|
VDISCARD |
VDSUSP |
VEOF |
VEOL |
VEOL2 |
VERASE |
VINTR |
VKILL |
VLNEXT |
VMIN |
VQUIT |
VREPRINT |
VSTART |
VSTATUS |
VSTOP |
VSUSP |
VTIME |
VWERASE |
Modifier and Type | Method and Description |
---|---|
static Attributes.ControlChar |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attributes.ControlChar[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attributes.ControlChar VEOF
public static final Attributes.ControlChar VEOL
public static final Attributes.ControlChar VEOL2
public static final Attributes.ControlChar VERASE
public static final Attributes.ControlChar VWERASE
public static final Attributes.ControlChar VKILL
public static final Attributes.ControlChar VREPRINT
public static final Attributes.ControlChar VINTR
public static final Attributes.ControlChar VQUIT
public static final Attributes.ControlChar VSUSP
public static final Attributes.ControlChar VDSUSP
public static final Attributes.ControlChar VSTART
public static final Attributes.ControlChar VSTOP
public static final Attributes.ControlChar VLNEXT
public static final Attributes.ControlChar VDISCARD
public static final Attributes.ControlChar VMIN
public static final Attributes.ControlChar VTIME
public static final Attributes.ControlChar VSTATUS
public static Attributes.ControlChar[] values()
for (Attributes.ControlChar c : Attributes.ControlChar.values()) System.out.println(c);
public static Attributes.ControlChar valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.