public enum UnderlineType extends Enum<UnderlineType>
| Enum Constant and Description |
|---|
DOUBLE
The double.
|
DOUBLE_ACCOUNTING
The double accounting.
|
NONE
The none.
|
SINGLE
The single.
|
SINGLE_ACCOUNTING
The single accounting.
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Gets the value.
|
static UnderlineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnderlineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnderlineType NONE
public static final UnderlineType SINGLE
public static final UnderlineType DOUBLE
public static final UnderlineType SINGLE_ACCOUNTING
public static final UnderlineType DOUBLE_ACCOUNTING
public static UnderlineType[] values()
for (UnderlineType c : UnderlineType.values()) System.out.println(c);
public static UnderlineType 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 byte getValue()
Copyright © 2022. All rights reserved.