public static enum CodeGenerator.ParentPropertyMode extends Enum<CodeGenerator.ParentPropertyMode>
Enum Constant and Description |
---|
FIRST
The first.
|
LAST
The last.
|
NONE
The none.
|
Modifier and Type | Method and Description |
---|---|
static CodeGenerator.ParentPropertyMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeGenerator.ParentPropertyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeGenerator.ParentPropertyMode NONE
public static final CodeGenerator.ParentPropertyMode FIRST
public static final CodeGenerator.ParentPropertyMode LAST
public static CodeGenerator.ParentPropertyMode[] values()
for (CodeGenerator.ParentPropertyMode c : CodeGenerator.ParentPropertyMode.values()) System.out.println(c);
public static CodeGenerator.ParentPropertyMode 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 nullCopyright © 2019. All rights reserved.