public enum STUnderlineValues extends Enum<STUnderlineValues>
Java class for ST_UnderlineValues.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_UnderlineValues"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="single"/> <enumeration value="double"/> <enumeration value="singleAccounting"/> <enumeration value="doubleAccounting"/> <enumeration value="none"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DOUBLE |
DOUBLE_ACCOUNTING |
NONE |
SINGLE |
SINGLE_ACCOUNTING |
Modifier and Type | Method and Description |
---|---|
static STUnderlineValues |
fromValue(String v) |
String |
value() |
static STUnderlineValues |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STUnderlineValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STUnderlineValues SINGLE
public static final STUnderlineValues DOUBLE
public static final STUnderlineValues SINGLE_ACCOUNTING
public static final STUnderlineValues DOUBLE_ACCOUNTING
public static final STUnderlineValues NONE
public static STUnderlineValues[] values()
for (STUnderlineValues c : STUnderlineValues.values()) System.out.println(c);
public static STUnderlineValues 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 String value()
public static STUnderlineValues fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.