Class ReflectParameter
- java.lang.Object
-
- com.maxxton.microdocs.core.reflect.ReflectParameter
-
public class ReflectParameter extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ReflectParameter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ReflectAnnotationgetAnnotation(java.lang.String name)java.util.List<ReflectAnnotation>getAnnotations()java.lang.StringgetName()ReflectGenericClassgetType()booleanhasAnnotation(java.lang.String... names)voidsetAnnotations(java.util.List<ReflectAnnotation> annotations)voidsetName(java.lang.String name)voidsetType(ReflectGenericClass type)
-
-
-
Method Detail
-
getAnnotations
public java.util.List<ReflectAnnotation> getAnnotations()
-
setAnnotations
public void setAnnotations(java.util.List<ReflectAnnotation> annotations)
-
getType
public ReflectGenericClass getType()
-
setType
public void setType(ReflectGenericClass type)
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
hasAnnotation
public boolean hasAnnotation(java.lang.String... names)
-
getAnnotation
public ReflectAnnotation getAnnotation(java.lang.String name)
-
-