Package com.esri.arcgisruntime.data
Class CodedValueDomain
- java.lang.Object
-
- com.esri.arcgisruntime.data.Domain
-
- com.esri.arcgisruntime.data.CodedValueDomain
-
- All Implemented Interfaces:
JsonSerializable
public final class CodedValueDomain extends Domain
A domain which specifies an explicit set of valid values for aField
.A coded value domain can apply to any type of
Field
-- text, numeric, date, and so on. For aServiceFeatureTable
, an attribute value is checked against this domain when the edits are applied to the service.- Since:
- 100.0.0
- See Also:
ServiceFeatureTable
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CodedValue>
getCodedValues()
Gets a list of CodedValue objects of this domain.-
Methods inherited from class com.esri.arcgisruntime.data.Domain
fromJson, getFieldType, getName, getUnknownJson, getUnsupportedJson, toJson
-
-
-
-
Method Detail
-
getCodedValues
public java.util.List<CodedValue> getCodedValues()
Gets a list of CodedValue objects of this domain.- Returns:
- an unmodifiable list of CodedValue objects for this domain.
- Since:
- 100.0.0
-
-