public enum STCharacterSpacing extends Enum<STCharacterSpacing>
Java class for ST_CharacterSpacing.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_CharacterSpacing"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="doNotCompress"/> <enumeration value="compressPunctuation"/> <enumeration value="compressPunctuationAndJapaneseKana"/> </restriction> </simpleType>
Enum Constant and Description |
---|
COMPRESS_PUNCTUATION
Compress Whitespace From Punctuation
Characters
|
COMPRESS_PUNCTUATION_AND_JAPANESE_KANA
Compress Whitespace From Both Japanese Kana And
Punctuation Characters
|
DO_NOT_COMPRESS
Do Not Compress
Whitespace
|
Modifier and Type | Method and Description |
---|---|
static STCharacterSpacing |
fromValue(String v) |
String |
value() |
static STCharacterSpacing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STCharacterSpacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STCharacterSpacing DO_NOT_COMPRESS
public static final STCharacterSpacing COMPRESS_PUNCTUATION
public static final STCharacterSpacing COMPRESS_PUNCTUATION_AND_JAPANESE_KANA
public static STCharacterSpacing[] values()
for (STCharacterSpacing c : STCharacterSpacing.values()) System.out.println(c);
public static STCharacterSpacing 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 STCharacterSpacing fromValue(String v)
Copyright © 2007-2014. All Rights Reserved.