public interface Style
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
get(java.lang.String propertyName)
Retrieves the value of the specified property.
|
java.lang.Object |
getIndex(java.lang.String propertyName,
int index)
Retrieves the value of the specified indexed property.
|
java.lang.Object |
getIndexedProperty(java.lang.String propertyName,
int index)
Deprecated.
use
getIndex(String, int) instead. |
java.lang.Object |
getProperty(java.lang.String propertyName)
Deprecated.
use
get(String) instead. |
java.util.Iterator |
getPropertyIndices(java.lang.String propertyName)
Determines which indices of a particular property are set.
|
java.util.Iterator |
getPropertyNames()
Retrieves the names of all set properties.
|
boolean |
isIndexedPropertySet(java.lang.String propertyName,
int index)
Determines if a particular index of an indexed property is set.
|
boolean |
isPropertySet(java.lang.String propertyName)
Determines if a particular property is set.
|
java.lang.Object getIndex(java.lang.String propertyName,
int index)
java.lang.Object getIndexedProperty(java.lang.String propertyName,
int index)
getIndex(String, int) instead.java.lang.Object get(java.lang.String propertyName)
java.lang.Object getProperty(java.lang.String propertyName)
get(String) instead.java.util.Iterator getPropertyIndices(java.lang.String propertyName)
Iterator that returns the set indices in
incrementing order as Integersjava.util.Iterator getPropertyNames()
Iterator that returns the names of all set
propertiesboolean isIndexedPropertySet(java.lang.String propertyName,
int index)
propertyName - the property nameindex - the indexboolean isPropertySet(java.lang.String propertyName)
propertyName - the property name