public enum ClassBuilderMode extends java.lang.Enum<ClassBuilderMode>
| Enum Constant and Description |
|---|
FULL
Full function bodies
|
SIGNATURES
Only function signatures
|
STUBS
Function with stub bodies: just throw exception
|
| Modifier and Type | Method and Description |
|---|---|
static ClassBuilderMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassBuilderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassBuilderMode FULL
public static final ClassBuilderMode SIGNATURES
public static final ClassBuilderMode STUBS
public static ClassBuilderMode[] values()
for (ClassBuilderMode c : ClassBuilderMode.values()) System.out.println(c);
public static ClassBuilderMode 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