private static enum AutoValueProcessor.ExtensionName extends java.lang.Enum<AutoValueProcessor.ExtensionName> implements com.google.common.base.Function<AutoValueExtension,java.lang.String>
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
apply(AutoValueExtension input) |
static AutoValueProcessor.ExtensionName |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoValueProcessor.ExtensionName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoValueProcessor.ExtensionName INSTANCE
public static AutoValueProcessor.ExtensionName[] values()
for (AutoValueProcessor.ExtensionName c : AutoValueProcessor.ExtensionName.values()) System.out.println(c);
public static AutoValueProcessor.ExtensionName 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 java.lang.String apply(AutoValueExtension input)
apply
in interface com.google.common.base.Function<AutoValueExtension,java.lang.String>