public enum CaseConversions extends Enum<CaseConversions> implements CaseConversion
String.| Enum Constant and Description |
|---|
LOWER
Lower conversion of the case of a
String. |
NO
No conversion of the case of a
String. |
UPPER
Upper conversion of the case of a
String. |
| Modifier and Type | Method and Description |
|---|---|
static CaseConversions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaseConversions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfconvert, getConversionNamepublic static final CaseConversions LOWER
String.public static final CaseConversions UPPER
String.public static final CaseConversions NO
String.public static CaseConversions[] values()
for (CaseConversions c : CaseConversions.values()) System.out.println(c);
public static CaseConversions 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 © 2015–2017 AssertJ. All rights reserved.