public static enum Nls.Capitalization extends java.lang.Enum<Nls.Capitalization>
Enum Constant and Description |
---|
NotSpecified |
Sentence
e.g.
|
Title
e.g.
|
Modifier and Type | Method and Description |
---|---|
static Nls.Capitalization |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Nls.Capitalization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Nls.Capitalization NotSpecified
public static final Nls.Capitalization Title
public static final Nls.Capitalization Sentence
public static Nls.Capitalization[] values()
for (Nls.Capitalization c : Nls.Capitalization.values()) System.out.println(c);
public static Nls.Capitalization valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null