public static enum InstantiatorDefinition.Type extends Enum<InstantiatorDefinition.Type>
| Enum Constant and Description |
|---|
BUILDER |
CONSTRUCTOR |
METHOD |
| Modifier and Type | Method and Description |
|---|---|
static InstantiatorDefinition.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstantiatorDefinition.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstantiatorDefinition.Type CONSTRUCTOR
public static final InstantiatorDefinition.Type METHOD
public static final InstantiatorDefinition.Type BUILDER
public static InstantiatorDefinition.Type[] values()
for (InstantiatorDefinition.Type c : InstantiatorDefinition.Type.values()) System.out.println(c);
public static InstantiatorDefinition.Type 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. All rights reserved.