Package com.esri.arcgisruntime.symbology
Class DictionarySymbolStyleConfiguration
- java.lang.Object
-
- com.esri.arcgisruntime.symbology.DictionarySymbolStyleConfiguration
-
public final class DictionarySymbolStyleConfiguration extends java.lang.Object
Configuration settings for a custom DictionarySymbolStyle. These configuration settings are returned from a DictionarySymbolStyle.- Since:
- 100.6.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Object>
getDomain()
Returns an unmodifiable list of possible values for this configuration property.java.lang.String
getInfo()
Returns a description of the configuration as defined by the style author.java.lang.String
getName()
Returns the name of the property as defined by the style configuration.java.lang.Object
getValue()
Gets the value of the configuration property.void
setValue(java.lang.Object value)
Sets the value of the configuration property.
-
-
-
Method Detail
-
getDomain
public java.util.List<java.lang.Object> getDomain()
Returns an unmodifiable list of possible values for this configuration property.- Returns:
- the unmodifiable list of possible values for this configuration property
- Since:
- 100.6.0
-
getInfo
public java.lang.String getInfo()
Returns a description of the configuration as defined by the style author.- Returns:
- a description of the configuration as defined by the style author
- Since:
- 100.6.0
-
getName
public java.lang.String getName()
Returns the name of the property as defined by the style configuration.- Returns:
- the name of the property as defined by the style configuration
- Since:
- 100.6.0
-
getValue
public java.lang.Object getValue()
Gets the value of the configuration property. The configuration may be defined with a default value.- Returns:
- the value of the configuration property
- Since:
- 100.6.0
-
setValue
public void setValue(java.lang.Object value)
Sets the value of the configuration property.- Parameters:
value
- the new value- Since:
- 100.6.0
-
-