Package | Description |
---|---|
io.stallion.reflection |
Modifier and Type | Method and Description |
---|---|
static Object |
PropertyUtils.getDotProperty(Object target,
String propertyName) |
static Map<String,Object> |
PropertyUtils.getProperties(Object target,
Class<? extends Annotation>... excludeAnnotations)
Build a map of direct javabeans properties of the target object.
|
static Object |
PropertyUtils.getProperty(Object target,
String propertyName)
Get a direct or indirect property (dotted property: prop1.prop2.prop3) on the target object.
|
static List<String> |
PropertyUtils.getPropertyNames(Class clazz) |
static Object |
PropertyUtils.getPropertyOrMappedValue(Object target,
String propertyName) |
static void |
PropertyUtils.setProperties(Object target,
Map properties)
Set a
Map of direct or indirect properties on the target object. |
static void |
PropertyUtils.setProperty(Object target,
String propertyName,
Object propertyValue)
Set a direct or indirect property (dotted property: prop1.prop2.prop3) on the target object.
|
Copyright © 2016. All rights reserved.