public static enum Keyword.Style extends Enum<Keyword.Style>
| Enum Constant and Description |
|---|
CAMEL_CASE
`CamelCaseStyle`
|
CONSTANT_NAME
`CONSTANT_NAME_STYLE`
|
DASHED
`dashed-style`
|
HTTP_HEADER
`Http-Header-Style`
|
JAVA_VARIABLE |
READABLE
`Readable style`
|
UNDERSCORE
`underscore_style`
|
| Modifier and Type | Method and Description |
|---|---|
protected CharSequence |
processToken(FastStr token,
int seq) |
String |
toString(Keyword keyword) |
static Keyword.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Keyword.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keyword.Style CAMEL_CASE
public static final Keyword.Style JAVA_VARIABLE
public static final Keyword.Style UNDERSCORE
public static final Keyword.Style CONSTANT_NAME
public static final Keyword.Style DASHED
public static final Keyword.Style HTTP_HEADER
public static final Keyword.Style READABLE
public static Keyword.Style[] values()
for (Keyword.Style c : Keyword.Style.values()) System.out.println(c);
public static Keyword.Style 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 nullprotected CharSequence processToken(FastStr token, int seq)
Copyright © 2017. All Rights Reserved.