public enum LocalizedTextWidth extends Enum<LocalizedTextWidth>
Java class for LocalizedTextWidth.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LocalizedTextWidth">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="xs"/>
<enumeration value="s"/>
<enumeration value="m"/>
<enumeration value="l"/>
<enumeration value="xl"/>
<enumeration value="xxl"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
L
A line has 16 or less fullwidth characters.
|
M
A line has 12 or less fullwidth characters.
|
S
A line has 8 or less fullwidth characters.
|
XL
A line has 20 or less fullwidth characters.
|
XS
A line has 4 or less fullwidth characters.
|
XXL
A line has 21 or more fullwidth characters.
|
| Modifier and Type | Method and Description |
|---|---|
static LocalizedTextWidth |
fromValue(String v) |
String |
value() |
static LocalizedTextWidth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalizedTextWidth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalizedTextWidth XS
public static final LocalizedTextWidth S
public static final LocalizedTextWidth M
public static final LocalizedTextWidth L
public static final LocalizedTextWidth XL
public static final LocalizedTextWidth XXL
public static LocalizedTextWidth[] values()
for (LocalizedTextWidth c : LocalizedTextWidth.values()) System.out.println(c);
public static LocalizedTextWidth 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 LocalizedTextWidth fromValue(String v)
Copyright © 2017. All rights reserved.