Class AnnotationProperties
java.lang.Object
nl.jqno.equalsverifier.internal.reflection.annotations.AnnotationProperties
Contains all properties of an annotation necessary to to make decisions about that annotation.
Note that this object does not contain all possible properties; only the ones that are actually used by EqualsVerifier.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetArrayValues(String name) Retrieves the content of an array value property.voidputArrayValues(String name, Set<String> values) Adds the content of an array value property.
-
Constructor Details
-
AnnotationProperties
Constructor.- Parameters:
className- The annotation's className string.
-
-
Method Details
-
getClassName
- Returns:
- the annotation's className string.
-
putArrayValues
Adds the content of an array value property.- Parameters:
name- The name of the array value property.values- The content of the array value property.
-
getArrayValues
Retrieves the content of an array value property.- Parameters:
name- The name of the array value property.- Returns:
- The content of the array value property.
-