Package com.esri.arcgisruntime.symbology
Class DictionarySymbolStyleConfiguration
- java.lang.Object
-
- com.esri.arcgisruntime.symbology.DictionarySymbolStyleConfiguration
-
public final class DictionarySymbolStyleConfiguration extends 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 List<Object>
getDomain()
Returns an unmodifiable list of possible values for this configuration property.String
getInfo()
Returns a description of the configuration as defined by the style author.String
getName()
Returns the name of the property as defined by the style configuration.Object
getValue()
Gets the value of the configuration property.void
setValue(Object value)
Sets the value of the configuration property.
-
-
-
Method Detail
-
getDomain
public List<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 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 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 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(Object value)
Sets the value of the configuration property.- Parameters:
value
- the new value- Since:
- 100.6.0
-
-