Uses of Class
com.google.auto.value.processor.AutoValueOrOneOfProcessor.ObjectMethod
-
Packages that use AutoValueOrOneOfProcessor.ObjectMethod Package Description com.google.auto.value.processor This package contains the annotation processor that implements theAutoValue
API. -
-
Uses of AutoValueOrOneOfProcessor.ObjectMethod in com.google.auto.value.processor
Methods in com.google.auto.value.processor that return AutoValueOrOneOfProcessor.ObjectMethod Modifier and Type Method Description (package private) static AutoValueOrOneOfProcessor.ObjectMethod
AutoValueOrOneOfProcessor. objectMethodToOverride(javax.lang.model.element.ExecutableElement method)
Determines which of the three public non-final methods fromjava.lang.Object
, if any, is overridden by the given method.static AutoValueOrOneOfProcessor.ObjectMethod
AutoValueOrOneOfProcessor.ObjectMethod. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AutoValueOrOneOfProcessor.ObjectMethod[]
AutoValueOrOneOfProcessor.ObjectMethod. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.auto.value.processor that return types with arguments of type AutoValueOrOneOfProcessor.ObjectMethod Modifier and Type Method Description private static java.util.Map<AutoValueOrOneOfProcessor.ObjectMethod,javax.lang.model.element.ExecutableElement>
AutoValueOrOneOfProcessor. determineObjectMethodsToGenerate(java.util.Set<javax.lang.model.element.ExecutableElement> methods)
Given a list of all methods defined in or inherited by a class, returns a map indicating which of equals, hashCode, and toString should be generated.Method parameters in com.google.auto.value.processor with type arguments of type AutoValueOrOneOfProcessor.ObjectMethod Modifier and Type Method Description (package private) static java.lang.String
AutoValueOrOneOfProcessor. equalsParameterType(java.util.Map<AutoValueOrOneOfProcessor.ObjectMethod,javax.lang.model.element.ExecutableElement> methodsToGenerate)
Returns the encoded parameter type of theequals(Object)
method that is to be generated, or an empty string if the method is not being generated.
-