public enum STScript extends Enum<STScript>
Java class for ST_Script.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Script">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="roman"/>
<enumeration value="script"/>
<enumeration value="fraktur"/>
<enumeration value="double-struck"/>
<enumeration value="sans-serif"/>
<enumeration value="monospace"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DOUBLE_STRUCK
double-struck
|
FRAKTUR
Fraktur
|
MONOSPACE
Monospace
|
ROMAN
Roman
|
SANS_SERIF
Sans-Serif
|
SCRIPT
Script
|
| Modifier and Type | Method and Description |
|---|---|
static STScript |
fromValue(String v) |
String |
value() |
static STScript |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STScript[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STScript ROMAN
public static final STScript SCRIPT
public static final STScript FRAKTUR
public static final STScript DOUBLE_STRUCK
public static final STScript SANS_SERIF
public static final STScript MONOSPACE
public static STScript[] values()
for (STScript c : STScript.values()) System.out.println(c);
public static STScript 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-2019. All Rights Reserved.