public static enum ANSI.Style extends Enum<ANSI.Style> implements IMarkIx
| Modifier and Type | Method and Description |
|---|---|
int |
ix() |
static ANSI.Style |
of(Integer ix) |
static ANSI.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ANSI.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ANSI.Style NORMAL
public static final ANSI.Style BOLD
public static final ANSI.Style UNDERLINE
public static final ANSI.Style GRAY
public static final ANSI.Style ANTI
public static ANSI.Style[] values()
for (ANSI.Style c : ANSI.Style.values()) System.out.println(c);
public static ANSI.Style 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 nullpublic static ANSI.Style of(Integer ix)
Copyright © 2019. All rights reserved.