public enum EnumFormatStyle extends java.lang.Enum<EnumFormatStyle>
| Enum Constant and Description |
|---|
ALLMAN |
BANNER |
GNU |
JAVA |
KR |
LINUX |
NONE |
STROUSTRUP |
WHITESMITH |
| Modifier and Type | Method and Description |
|---|---|
void |
apply(ASFormatter formatter) |
static EnumFormatStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumFormatStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFormatStyle NONE
public static final EnumFormatStyle ALLMAN
public static final EnumFormatStyle JAVA
public static final EnumFormatStyle KR
public static final EnumFormatStyle STROUSTRUP
public static final EnumFormatStyle WHITESMITH
public static final EnumFormatStyle BANNER
public static final EnumFormatStyle GNU
public static final EnumFormatStyle LINUX
public static EnumFormatStyle[] values()
for (EnumFormatStyle c : EnumFormatStyle.values()) System.out.println(c);
public static EnumFormatStyle 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 nullpublic void apply(ASFormatter formatter)