Package org.jline.terminal
Enum Attributes.OutputFlag
- java.lang.Object
-
- java.lang.Enum<Attributes.OutputFlag>
-
- org.jline.terminal.Attributes.OutputFlag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Attributes.OutputFlag>
- Enclosing class:
- Attributes
public static enum Attributes.OutputFlag extends java.lang.Enum<Attributes.OutputFlag>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
OutputFlag()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Attributes.OutputFlag
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Attributes.OutputFlag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPOST
public static final Attributes.OutputFlag OPOST
-
ONLCR
public static final Attributes.OutputFlag ONLCR
-
OXTABS
public static final Attributes.OutputFlag OXTABS
-
ONOEOT
public static final Attributes.OutputFlag ONOEOT
-
OCRNL
public static final Attributes.OutputFlag OCRNL
-
ONOCR
public static final Attributes.OutputFlag ONOCR
-
ONLRET
public static final Attributes.OutputFlag ONLRET
-
OFILL
public static final Attributes.OutputFlag OFILL
-
NLDLY
public static final Attributes.OutputFlag NLDLY
-
TABDLY
public static final Attributes.OutputFlag TABDLY
-
CRDLY
public static final Attributes.OutputFlag CRDLY
-
FFDLY
public static final Attributes.OutputFlag FFDLY
-
BSDLY
public static final Attributes.OutputFlag BSDLY
-
VTDLY
public static final Attributes.OutputFlag VTDLY
-
OFDEL
public static final Attributes.OutputFlag OFDEL
-
-
Method Detail
-
values
public static Attributes.OutputFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Attributes.OutputFlag c : Attributes.OutputFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Attributes.OutputFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-