public static enum Attributes.InputFlag extends Enum<Attributes.InputFlag>
Enum Constant and Description |
---|
BRKINT |
ICRNL |
IGNBRK |
IGNCR |
IGNPAR |
IMAXBEL |
INLCR |
INPCK |
ISTRIP |
IUTF8 |
IXANY |
IXOFF |
IXON |
PARMRK |
Modifier and Type | Method and Description |
---|---|
static Attributes.InputFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attributes.InputFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attributes.InputFlag IGNBRK
public static final Attributes.InputFlag BRKINT
public static final Attributes.InputFlag IGNPAR
public static final Attributes.InputFlag PARMRK
public static final Attributes.InputFlag INPCK
public static final Attributes.InputFlag ISTRIP
public static final Attributes.InputFlag INLCR
public static final Attributes.InputFlag IGNCR
public static final Attributes.InputFlag ICRNL
public static final Attributes.InputFlag IXON
public static final Attributes.InputFlag IXOFF
public static final Attributes.InputFlag IXANY
public static final Attributes.InputFlag IMAXBEL
public static final Attributes.InputFlag IUTF8
public static Attributes.InputFlag[] values()
for (Attributes.InputFlag c : Attributes.InputFlag.values()) System.out.println(c);
public static Attributes.InputFlag 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.