Class AnnotationValueList
- java.lang.Object
-
- com.thoughtworks.qdox.model.expression.AnnotationValueList
-
- All Implemented Interfaces:
AnnotationValue,Expression
public class AnnotationValueList extends java.lang.Object implements AnnotationValue
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<AnnotationValue>valueList
-
Constructor Summary
Constructors Constructor Description AnnotationValueList(java.util.List<AnnotationValue> valueList)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectaccept(ExpressionVisitor visitor)Accept a visitor for this value.java.util.List<java.lang.Object>getParameterValue()Get a parameter value forJavaAnnotation.getNamedParameter(String).java.util.List<AnnotationValue>getValueList()java.lang.StringtoString()
-
-
-
Field Detail
-
valueList
private final java.util.List<AnnotationValue> valueList
-
-
Constructor Detail
-
AnnotationValueList
public AnnotationValueList(java.util.List<AnnotationValue> valueList)
-
-
Method Detail
-
getValueList
public java.util.List<AnnotationValue> getValueList()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
accept
public java.lang.Object accept(ExpressionVisitor visitor)
Accept a visitor for this value.- Specified by:
acceptin interfaceAnnotationValue- Parameters:
visitor- Visitor- Returns:
- Visitor result
-
getParameterValue
public java.util.List<java.lang.Object> getParameterValue()
Get a parameter value forJavaAnnotation.getNamedParameter(String).- Specified by:
getParameterValuein interfaceExpression- Returns:
- Parameter value
-
-