Package org.codehaus.groovy.transform
Class EqualsAndHashCodeASTTransformation
java.lang.Object
org.codehaus.groovy.transform.AbstractASTTransformation
org.codehaus.groovy.transform.EqualsAndHashCodeASTTransformation
- All Implemented Interfaces:
ASTTransformation,ErrorCollecting
Handles generation of equals() and hashCode() methods via the
EqualsAndHashCode annotation.-
Field Summary
Fields inherited from class org.codehaus.groovy.transform.AbstractASTTransformation
RETENTION_CLASSNODE, sourceUnit -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidcreateEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes) Generates an equals method for the given class.static voidcreateEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames) Generates an equals method for the given class.static voidcreateEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties) Generates an equals method for the given class.static voidcreateEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo) Generates an equals method for the given class.static voidcreateEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo, boolean useGetter) Generates an equals method for the given class.static voidcreateHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes) Generates a hashCode method for the given class.static voidcreateHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames) Generates a hashCode method for the given class.static voidcreateHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties) Generates a hashCode method for the given class.static voidcreateHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo) Generates a hashCode method for the given class.static voidcreateHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo, boolean useGetter) Generates a hashCode method for the given class.voidvisit(ASTNode[] nodes, SourceUnit source) The method is invoked when an AST Transformation is active.Methods inherited from class org.codehaus.groovy.transform.AbstractASTTransformation
addError, checkIncludeExcludeUndefinedAware, checkIncludeExcludeUndefinedAware, checkNotInterface, checkPropertyList, checkPropertyList, checkPropertyList, copyAnnotatedNodeAnnotations, copyAnnotatedNodeAnnotations, deemedInternal, deemedInternalName, getAnnotationName, getMemberClassList, getMemberClassValue, getMemberClassValue, getMemberIntValue, getMemberStringList, getMemberStringValue, getMemberStringValue, getMemberValue, hasAnnotation, init, markAsInternal, memberHasValue, shouldSkip, shouldSkip, shouldSkip, shouldSkipOnDescriptorUndefinedAware, shouldSkipUndefinedAware, shouldSkipUndefinedAware, shouldSkipUndefinedAware, tokenize
-
Constructor Details
-
EqualsAndHashCodeASTTransformation
public EqualsAndHashCodeASTTransformation()
-
-
Method Details
-
visit
Description copied from interface:ASTTransformationThe method is invoked when an AST Transformation is active. For local transformations, it is invoked once each time the local annotation is encountered. For global transformations, it is invoked once for every source unit, which is typically a source file.- Parameters:
nodes- The ASTnodes when the call was triggered. Element 0 is the AnnotationNode that triggered this annotation to be activated. Element 1 is the AnnotatedNode decorated, such as a MethodNode or ClassNode. For global transformations it is usually safe to ignore this parameter.source- The source unit being compiled. The source unit may contain several classes. For global transformations, information about the AST can be retrieved from this object.
-
createHashCode
public static void createHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes) Generates a hashCode method for the given class.- Parameters:
cNode- the class to add hashCode method tocacheResult- whether to cache the hash code in a fieldincludeFields- whether to include fields in the hash codecallSuper- whether to include superclass hash codeexcludes- property names to excludeincludes- property names to include
-
createHashCode
public static void createHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames) Generates a hashCode method for the given class.- Parameters:
cNode- the class to add hashCode method tocacheResult- whether to cache the hash code in a fieldincludeFields- whether to include fields in the hash codecallSuper- whether to include superclass hash codeexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')
-
createHashCode
public static void createHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties) Generates a hashCode method for the given class.- Parameters:
cNode- the class to add hashCode method tocacheResult- whether to cache the hash code in a fieldincludeFields- whether to include fields in the hash codecallSuper- whether to include superclass hash codeexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all properties
-
createHashCode
public static void createHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo) Generates a hashCode method for the given class.- Parameters:
cNode- the class to add hashCode method tocacheResult- whether to cache the hash code in a fieldincludeFields- whether to include fields in the hash codecallSuper- whether to include superclass hash codeexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all propertiespojo- whether to treat as plain old Java object
-
createHashCode
public static void createHashCode(ClassNode cNode, boolean cacheResult, boolean includeFields, boolean callSuper, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo, boolean useGetter) Generates a hashCode method for the given class.- Parameters:
cNode- the class to add hashCode method tocacheResult- whether to cache the hash code in a fieldincludeFields- whether to include fields in the hash codecallSuper- whether to include superclass hash codeexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all propertiespojo- whether to treat as plain old Java objectuseGetter- whether to use getter methods instead of direct field access
-
createEquals
public static void createEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes) Generates an equals method for the given class.- Parameters:
cNode- the class to add equals method toincludeFields- whether to include fields in the comparisoncallSuper- whether to include superclass comparisonuseCanEqual- whether to generate and use a canEqual helper methodexcludes- property names to excludeincludes- property names to include
-
createEquals
public static void createEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames) Generates an equals method for the given class.- Parameters:
cNode- the class to add equals method toincludeFields- whether to include fields in the comparisoncallSuper- whether to include superclass comparisonuseCanEqual- whether to generate and use a canEqual helper methodexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')
-
createEquals
public static void createEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties) Generates an equals method for the given class.- Parameters:
cNode- the class to add equals method toincludeFields- whether to include fields in the comparisoncallSuper- whether to include superclass comparisonuseCanEqual- whether to generate and use a canEqual helper methodexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all properties
-
createEquals
public static void createEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo) Generates an equals method for the given class.- Parameters:
cNode- the class to add equals method toincludeFields- whether to include fields in the comparisoncallSuper- whether to include superclass comparisonuseCanEqual- whether to generate and use a canEqual helper methodexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all propertiespojo- whether to treat as plain old Java object
-
createEquals
public static void createEquals(ClassNode cNode, boolean includeFields, boolean callSuper, boolean useCanEqual, List<String> excludes, List<String> includes, boolean allNames, boolean allProperties, boolean pojo, boolean useGetter) Generates an equals method for the given class.- Parameters:
cNode- the class to add equals method toincludeFields- whether to include fields in the comparisoncallSuper- whether to include superclass comparisonuseCanEqual- whether to generate and use a canEqual helper methodexcludes- property names to excludeincludes- property names to includeallNames- whether to include all names (including internal ones with '$')allProperties- whether to process all propertiespojo- whether to treat as plain old Java objectuseGetter- whether to use getter methods instead of direct field access
-