Uses of Enum
com.google.auto.value.processor.AutoValueOrOneOfProcessor.ObjectMethod
Packages that use AutoValueOrOneOfProcessor.ObjectMethod
Package
Description
This package contains the annotation processor that implements the
AutoValue
API.-
Uses of AutoValueOrOneOfProcessor.ObjectMethod in com.google.auto.value.processor
Methods in com.google.auto.value.processor that return AutoValueOrOneOfProcessor.ObjectMethodModifier and TypeMethodDescription(package private) static AutoValueOrOneOfProcessor.ObjectMethod
AutoValueOrOneOfProcessor.objectMethodToOverride
(ExecutableElement method) Determines which of the three public non-final methods fromjava.lang.Object
, if any, is overridden by the given method.Returns the enum constant of this type with the specified name.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.ObjectMethodModifier and TypeMethodDescriptionprivate static Map<AutoValueOrOneOfProcessor.ObjectMethod,
ExecutableElement> AutoValueOrOneOfProcessor.determineObjectMethodsToGenerate
(Set<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.ObjectMethodModifier and TypeMethodDescription(package private) static String
AutoValueOrOneOfProcessor.equalsParameterType
(Map<AutoValueOrOneOfProcessor.ObjectMethod, 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.