public class PropertyLocator extends Object
Constructor and Description |
---|
PropertyLocator()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
List<PropertyCollection> |
getPropertyCollectionLocation(String propertyName)
A list of all the PropertyCollection's which has a Property with a certain name.
|
String |
getPropertyFirstStringValue(String propertyName)
Gets the first of String value of the Property, found in a PropertyCollection's, which has a Property with a certain name.
|
Object |
getPropertyFirstTypedValue(String propertyName)
Gets the first of Object value of the Property, found in a PropertyCollection's, which has a Property with a certain name.
|
int |
getPropertyLocationCount(String propertyName)
Gets the number of PropertyCollection's which has a Property with a certain name.
|
List<String> |
getPropertyStringValues(String propertyName)
Gets a list of String values of the Property, from each of the PropertyCollection's, which has a Property with a certain name.
|
List<Object> |
getPropertyTypedValues(String propertyName)
Gets a list of Object values of the Property, from each of the PropertyCollection's, which has a Property with a certain name.
|
public List<PropertyCollection> getPropertyCollectionLocation(String propertyName)
propertyName
- the name of the Property.public int getPropertyLocationCount(String propertyName)
propertyName
- the name of the Property.public List<String> getPropertyStringValues(String propertyName)
propertyName
- the name of the Property.Property.getValue()
public List<Object> getPropertyTypedValues(String propertyName)
propertyName
- the name of the Property.Property.getTypedValue()
public String getPropertyFirstStringValue(String propertyName)
propertyName
- the name of the Property.null
is returned.Property.getValue()
public Object getPropertyFirstTypedValue(String propertyName)
propertyName
- the name of the Property.null
is returned.Property.getTypedValue()