public enum FieldFlag extends java.lang.Enum<FieldFlag>
| Enum Constant and Description |
|---|
CONSTANT
Indicate that the field represents a constant or global
variable.
|
FIELD_SKIP
Indicate that the item should not be generated.
|
POINTER_FIELD
Indicate that the field is a pointer.
|
| Modifier and Type | Method and Description |
|---|---|
static FieldFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldFlag FIELD_SKIP
public static final FieldFlag CONSTANT
public static final FieldFlag POINTER_FIELD
public static FieldFlag[] values()
for (FieldFlag c : FieldFlag.values()) System.out.println(c);
public static FieldFlag 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 nullCopyright © 2009-2016 FuseSource, Corp.. All Rights Reserved.