| java.lang.Object | |
| ↳ | com.esri.core.renderer.UniqueValue |
Instances of this class represent unique value objects that are used in unique value renderers.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
UniqueValue()
The Constructor.
| |||||||||||
|
UniqueValue(JsonNode node)
Initializes UniqueValue from a Json node object.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| static UniqueValue |
fromJson(JsonParser parser)
Decodes a unique value from its JSON representation.
| ||||||||||
| String |
getDescription()
Gets the description.
| ||||||||||
| String |
getLabel()
Gets the label.
| ||||||||||
| Symbol |
getSymbol()
Gets the symbol.
| ||||||||||
| Object[] |
getValue()
Gets the unique value.
| ||||||||||
| void |
setDescription(String description)
Sets the description.
| ||||||||||
| void |
setLabel(String label)
Sets the label.
| ||||||||||
| void |
setSymbol(Symbol symbol)
Sets the symbol.
| ||||||||||
| void |
setValue(Object[] value)
Sets the unique value.
| ||||||||||
| String |
toJson(String delimiter)
Converts to a JSON string.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
The Constructor.
Initializes UniqueValue from a Json node object.
| node | the node |
|---|
| Exception | the exception |
|---|
Decodes a unique value from its JSON representation.
| parser | the Jackson parser holding the JSON data. |
|---|
| Exception | the exception |
|---|
Gets the unique value.
Sets the description.
| description | the description to set. |
|---|
Sets the symbol.
| symbol | the symbol used to display the value. |
|---|
Converts to a JSON string.
| delimiter | the delimiter |
|---|
| Exception | the exception |
|---|