private static enum AutoValueProcessor.SimpleMethodFunction extends java.lang.Enum<AutoValueProcessor.SimpleMethodFunction> implements com.google.common.base.Function<javax.lang.model.element.ExecutableElement,AutoValueProcessor.SimpleMethod>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
AutoValueProcessor.SimpleMethod |
apply(javax.lang.model.element.ExecutableElement input) |
static AutoValueProcessor.SimpleMethodFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoValueProcessor.SimpleMethodFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoValueProcessor.SimpleMethodFunction INSTANCE
public static AutoValueProcessor.SimpleMethodFunction[] values()
for (AutoValueProcessor.SimpleMethodFunction c : AutoValueProcessor.SimpleMethodFunction.values()) System.out.println(c);
public static AutoValueProcessor.SimpleMethodFunction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic AutoValueProcessor.SimpleMethod apply(javax.lang.model.element.ExecutableElement input)
apply
in interface com.google.common.base.Function<javax.lang.model.element.ExecutableElement,AutoValueProcessor.SimpleMethod>