public enum AnnotationUseSiteTarget extends Enum<AnnotationUseSiteTarget>
| Enum Constant and Description |
|---|
accessors
the property accessor methods, both get and set if applicable
|
field
the backing field for a property
|
get
the property get accessor
|
param
the property set method's parameter
|
receiver
the hidden "this" parameter in enhancement method
|
set
the property set accessor
|
| Modifier and Type | Method and Description |
|---|---|
Keyword |
getKeyword() |
boolean |
isAccessModifierOk() |
boolean |
isFinalModifierOk() |
static AnnotationUseSiteTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationUseSiteTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationUseSiteTarget field
public static final AnnotationUseSiteTarget accessors
public static final AnnotationUseSiteTarget get
public static final AnnotationUseSiteTarget set
public static final AnnotationUseSiteTarget param
public static final AnnotationUseSiteTarget receiver
public static AnnotationUseSiteTarget[] values()
for (AnnotationUseSiteTarget c : AnnotationUseSiteTarget.values()) System.out.println(c);
public static AnnotationUseSiteTarget 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 Keyword getKeyword()
public boolean isAccessModifierOk()
public boolean isFinalModifierOk()
Copyright © 2019. All rights reserved.