Package org.geotools.renderer.lite
Class GlyphPropertiesList
- Object
-
- GlyphPropertiesList
-
public class GlyphPropertiesList extends Object
- Author:
- jfc173
-
-
Constructor Summary
Constructors Constructor Description GlyphPropertiesList()
Creates a new instance of GlyphPropertiesList
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addProperty(String name, Class<?> type, Object value)
int
getPropertyIndex(String name)
String
getPropertyName(int i)
the index i starts counting at 0, not 1.Class
getPropertyType(int i)
the index i starts counting at 0, not 1.Class
getPropertyType(String name)
Object
getPropertyValue(int i)
the index i starts counting at 0, not 1.Object
getPropertyValue(String name)
boolean
hasProperty(String name)
void
setPropertyValue(String name, double value)
void
setPropertyValue(String name, int value)
void
setPropertyValue(String name, Object value)
-
-
-
Method Detail
-
getPropertyName
public String getPropertyName(int i)
the index i starts counting at 0, not 1. A list with two properties has property 0 and property 1.
-
getPropertyIndex
public int getPropertyIndex(String name)
-
getPropertyType
public Class getPropertyType(int i)
the index i starts counting at 0, not 1. A list with two properties has property 0 and property 1.
-
hasProperty
public boolean hasProperty(String name)
-
getPropertyValue
public Object getPropertyValue(int i)
the index i starts counting at 0, not 1. A list with two properties has property 0 and property 1.
-
setPropertyValue
public void setPropertyValue(String name, int value)
-
setPropertyValue
public void setPropertyValue(String name, double value)
-
-