| Package | Description |
|---|---|
| com.openpojo.reflection | |
| com.openpojo.reflection.impl |
| Modifier and Type | Method and Description |
|---|---|
PojoMethod |
PojoField.getGetter()
Returns getter PojoMethod or null if none are set.
|
PojoMethod |
PojoField.getSetter()
Returns setter PojoMethod or null if none are set.
|
| Modifier and Type | Method and Description |
|---|---|
List<PojoMethod> |
PojoClass.getPojoConstructors()
Get all Constructors defined in the class.
|
List<PojoMethod> |
PojoClass.getPojoMethods()
Get all PojoMethods defined in the class;
|
List<PojoMethod> |
PojoClass.getPojoMethodsAnnotatedWith(Class<? extends Annotation> annotation)
Get all PojoMethods annotated with given annotation
|
| Modifier and Type | Class and Description |
|---|---|
class |
PojoMethodImpl |
| Modifier and Type | Method and Description |
|---|---|
static PojoMethod |
PojoMethodFactory.getFieldGetter(Field field)
Returns the Getter Method for a field.
|
static PojoMethod |
PojoMethodFactory.getFieldSetter(Field field)
Returns the Setter Method for a field.
|
static PojoMethod |
PojoMethodFactory.getMethod(Class<?> clazz,
String name,
Class<?>... parameterTypes)
Returns a specific method given method name and parameters.
|
| Modifier and Type | Method and Description |
|---|---|
List<PojoMethod> |
PojoClassImpl.getPojoConstructors() |
List<PojoMethod> |
PojoClassImpl.getPojoMethods() |
static List<PojoMethod> |
PojoMethodFactory.getPojoMethods(Class<?> clazz)
Returns all methods on a given Class.
|
List<PojoMethod> |
PojoClassImpl.getPojoMethodsAnnotatedWith(Class<? extends Annotation> annotation) |
| Constructor and Description |
|---|
PojoClassImpl(Class<?> clazz,
List<PojoField> pojoFields,
List<PojoMethod> pojoMethods) |
Copyright © 2010–2021. All rights reserved.