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