Package | Description |
---|---|
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static PropertyInfo[] |
ReflectionUtils.getProperties(java.lang.Class<?> type,
boolean includeInherited)
Gets all properties found in a type.
|
static PropertyInfo[] |
ReflectionUtils.getProperties(java.lang.Class<?> type,
java.lang.String name,
boolean includeInherited)
Returns all properties found in a class type matching the given name.
|
static PropertyInfo |
ReflectionUtils.getProperty(java.lang.Class<?> type,
java.lang.String name,
boolean includeInherited)
Returns the property information for an object's property, if found, otherwise null.
|
PropertyInfo |
MemberInfo.getPropertyInfo() |
Modifier and Type | Method and Description |
---|---|
int |
PropertyInfo.compareTo(PropertyInfo other) |
static boolean |
ReflectionUtils.equal(PropertyInfo propA,
PropertyInfo propB)
Compares two Method classes and returns true if they appear to be referring to the same signature of a property.
|
static boolean |
ReflectionUtils.hasProperty(java.lang.Class<?> type,
PropertyInfo property,
boolean includeInherited)
Returns true if a method appears to be part of a type.
|
Constructor and Description |
---|
MemberInfo(PropertyInfo pi)
Initializes with property information.
|