public enum STEm extends Enum<STEm>
Java class for ST_Em.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Em"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="none"/> <enumeration value="dot"/> <enumeration value="comma"/> <enumeration value="circle"/> <enumeration value="underDot"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CIRCLE
Circle Emphasis Mark Above
Characters
|
COMMA
Comma Emphasis Mark Above
Characters
|
DOT
Dot Emphasis Mark Above
Characters
|
NONE
No Emphasis Mark
|
UNDER_DOT
Dot Emphasis Mark Below
Characters
|
Modifier and Type | Method and Description |
---|---|
static STEm |
fromValue(String v) |
String |
value() |
static STEm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STEm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STEm NONE
public static final STEm DOT
public static final STEm COMMA
public static final STEm CIRCLE
public static final STEm UNDER_DOT
public static STEm[] values()
for (STEm c : STEm.values()) System.out.println(c);
public static STEm 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()
Copyright © 2007-2014. All Rights Reserved.