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