| java.lang.Object | |
| ↳ | org.springframework.beans.PropertyAccessorUtils |
Utility methods for classes that perform bean property access
according to the PropertyAccessor interface.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Determine the canonical name for the given property path.
| |||||||||||
Determine the canonical names for the given property paths.
| |||||||||||
Determine the first nested property separator in the
given property path, ignoring dots in keys (like "map[my.key]").
| |||||||||||
Determine the first nested property separator in the
given property path, ignoring dots in keys (like "map[my.key]").
| |||||||||||
Return the actual property name for the given property path.
| |||||||||||
Check whether the given property path indicates an indexed or nested property.
| |||||||||||
Determine whether the given registered path matches the given property path,
either indicating the property itself or an indexed element of the property.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Determine the canonical name for the given property path.
Removes surrounding quotes from map keys:
map['key'] -> map[key]
map["key"] -> map[key]
| propertyName | the bean property path |
|---|
Determine the canonical names for the given property paths.
| propertyNames | the bean property paths (as array) |
|---|
Determine the first nested property separator in the given property path, ignoring dots in keys (like "map[my.key]").
| propertyPath | the property path to check |
|---|
Determine the first nested property separator in the given property path, ignoring dots in keys (like "map[my.key]").
| propertyPath | the property path to check |
|---|
Return the actual property name for the given property path.
| propertyPath | the property path to determine the property name for (can include property keys, for example for specifying a map entry) |
|---|
Check whether the given property path indicates an indexed or nested property.
| propertyPath | the property path to check |
|---|
Determine whether the given registered path matches the given property path, either indicating the property itself or an indexed element of the property.
| registeredPath | the registered path (potentially with index) |
|---|---|
| propertyPath | the property path (typically without index) |