public enum AccessorType extends Enum<AccessorType>
| Enum Constant and Description |
|---|
ADDER |
FIELD |
GETTER |
PARAMETER |
PRESENCE_CHECKER |
SETTER |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isFieldAssignment() |
static AccessorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessorType PARAMETER
public static final AccessorType FIELD
public static final AccessorType GETTER
public static final AccessorType SETTER
public static final AccessorType ADDER
public static final AccessorType PRESENCE_CHECKER
public static AccessorType[] values()
for (AccessorType c : AccessorType.values()) System.out.println(c);
public static AccessorType 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 nullpublic boolean isFieldAssignment()
Copyright © 2012–2020. All rights reserved.