Package | Description |
---|---|
propel.core.functional.predicates | |
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static Predicates.Predicate1<MemberInfo> |
Reflection.memberEqual(MemberInfo _member)
Predicate evaluating to true if given member equals the processed value
|
static Predicates.Predicate1<MemberInfo> |
Reflection.memberNameEquals(java.lang.String _name)
Predicate evaluating to true if a method name matches the given name
|
static Predicates.Predicate1<MemberInfo> |
Reflection.memberNameEquals(java.lang.String _name,
StringComparison _comparison)
Predicate evaluating to true if a method name matches the given name
|
Modifier and Type | Method and Description |
---|---|
static Predicates.Predicate1<MemberInfo> |
Reflection.memberEqual(MemberInfo _member)
Predicate evaluating to true if given member equals the processed value
|
Modifier and Type | Method and Description |
---|---|
static MemberInfo |
ReflectionUtils.getMember(java.lang.Class<?> type,
java.lang.String name,
boolean includeInherited)
Returns the property information for an object's property, if found, otherwise null.
|
static MemberInfo[] |
ReflectionUtils.getMembers(java.lang.Class<?> type,
boolean includeInherited)
Returns all methods found in a class type.
|
static MemberInfo[] |
ReflectionUtils.getMembers(java.lang.Class<?> type,
java.lang.String name,
boolean includeInherited)
Returns all members found in a class type matching the given name.
|
Modifier and Type | Method and Description |
---|---|
int |
MemberInfo.compareTo(MemberInfo other) |
static boolean |
ReflectionUtils.equal(MemberInfo membA,
MemberInfo membB)
Compares two class members and returns true if they appear to be referring to the same member.
|
static boolean |
ReflectionUtils.hasMember(java.lang.Class<?> type,
MemberInfo member,
boolean includeInherited)
Returns true if a member appears to be part of a type.
|