Package com.google.auto.value.processor
Class SimpleMethod
- java.lang.Object
-
- com.google.auto.value.processor.SimpleMethod
-
public final class SimpleMethod extends Object
A method on an@AutoValue
orAutoOneOf
class that has no specific attached information, such as atoBuilder()
method, or abuild()
method, where only the name and access type is needed in context.It implements JavaBean-style getters which means it can be referenced from templates, for example
$method.access
. This template access means that the class and its getters must be public.