public static enum CapitalTypeFeatureFunction.CapitalType extends Enum<CapitalTypeFeatureFunction.CapitalType>
| Enum Constant and Description |
|---|
ALL_LOWERCASE |
ALL_UPPERCASE |
INITIAL_UPPERCASE |
MIXED_CASE |
| Modifier and Type | Method and Description |
|---|---|
static CapitalTypeFeatureFunction.CapitalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CapitalTypeFeatureFunction.CapitalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapitalTypeFeatureFunction.CapitalType ALL_LOWERCASE
public static final CapitalTypeFeatureFunction.CapitalType ALL_UPPERCASE
public static final CapitalTypeFeatureFunction.CapitalType INITIAL_UPPERCASE
public static final CapitalTypeFeatureFunction.CapitalType MIXED_CASE
public static CapitalTypeFeatureFunction.CapitalType 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 static CapitalTypeFeatureFunction.CapitalType[] values()
for (CapitalTypeFeatureFunction.CapitalType c : CapitalTypeFeatureFunction.CapitalType.values()) System.out.println(c);
Copyright © 2014. All rights reserved.