public enum CapitalMode extends Enum<CapitalMode>
| Modifier and Type | Method and Description |
|---|---|
static CapitalMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CapitalMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapitalMode lowercase
public static final CapitalMode letter
public static final CapitalMode word
public static final CapitalMode permanent
public static CapitalMode[] values()
for (CapitalMode c : CapitalMode.values()) System.out.println(c);
public static CapitalMode 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 nullCopyright © 2010–2025 The DAISY Consortium. All rights reserved.