public static enum AnnotationUtils.MethodFilter extends Enum<AnnotationUtils.MethodFilter>
| Enum Constant and Description |
|---|
DEFAULT
A no-op filter.
|
NO_PARAMETER
A filter that returns an exception if the specified method contains parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static AnnotationUtils.MethodFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationUtils.MethodFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationUtils.MethodFilter DEFAULT
public static final AnnotationUtils.MethodFilter NO_PARAMETER
public static AnnotationUtils.MethodFilter[] values()
for (AnnotationUtils.MethodFilter c : AnnotationUtils.MethodFilter.values()) System.out.println(c);
public static AnnotationUtils.MethodFilter 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 © 2021. All rights reserved.