public static enum CamelCaseValidator.MemberNameHandling extends java.lang.Enum<CamelCaseValidator.MemberNameHandling>
| Enum Constant and Description |
|---|
LOWER
Member names are serialized using lower camel case (e.g., fooBar).
|
UPPER
Member names are serialized using upper camel case (e.g., FooBar).
|
| Modifier and Type | Method and Description |
|---|---|
static CamelCaseValidator.MemberNameHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CamelCaseValidator.MemberNameHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CamelCaseValidator.MemberNameHandling UPPER
public static final CamelCaseValidator.MemberNameHandling LOWER
public static CamelCaseValidator.MemberNameHandling[] values()
for (CamelCaseValidator.MemberNameHandling c : CamelCaseValidator.MemberNameHandling.values()) System.out.println(c);
public static CamelCaseValidator.MemberNameHandling 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