public static enum Method.MethodConstructor extends java.lang.Enum<Method.MethodConstructor>
| Enum Constant and Description |
|---|
CONSTRUCTOR |
ECLIPSE_ENUM_CONSTRUCTOR |
ENUM_CONSTRUCTOR |
NOT |
RECORD_CANONICAL_CONSTRUCTOR |
STATIC_CONSTRUCTOR |
| Modifier and Type | Field and Description |
|---|---|
private boolean |
isConstructor |
private boolean |
isEnumConstructor |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isConstructor() |
boolean |
isEnumConstructor() |
static Method.MethodConstructor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Method.MethodConstructor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Method.MethodConstructor NOT
public static final Method.MethodConstructor STATIC_CONSTRUCTOR
public static final Method.MethodConstructor CONSTRUCTOR
public static final Method.MethodConstructor RECORD_CANONICAL_CONSTRUCTOR
public static final Method.MethodConstructor ENUM_CONSTRUCTOR
public static final Method.MethodConstructor ECLIPSE_ENUM_CONSTRUCTOR
private final boolean isConstructor
private final boolean isEnumConstructor
public static Method.MethodConstructor[] values()
for (Method.MethodConstructor c : Method.MethodConstructor.values()) System.out.println(c);
public static Method.MethodConstructor 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 nullpublic boolean isConstructor()
public boolean isEnumConstructor()