public static enum Schema2Beans.OutputType extends Enum<Schema2Beans.OutputType>
Schema2Beans.outputType()| Enum Constant and Description |
|---|
JAVABEANS
Generate pure JavaBeans that do not need any runtime library support (no
BaseBean). |
TRADITIONAL_BASEBEAN
Force use of
BaseBean. |
| Modifier and Type | Method and Description |
|---|---|
static Schema2Beans.OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Schema2Beans.OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Schema2Beans.OutputType TRADITIONAL_BASEBEAN
BaseBean. Runtime required.public static final Schema2Beans.OutputType JAVABEANS
BaseBean).public static Schema2Beans.OutputType[] values()
for (Schema2Beans.OutputType c : Schema2Beans.OutputType.values()) System.out.println(c);
public static Schema2Beans.OutputType 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 © 2017–2019 Eclipse Foundation. All rights reserved.