Description
This lookup function returns the name for a code from the feature service layer coded value domain.
Parameter |
Value |
---|---|
restEndPoint |
Name of the endpoint that references the feature service. |
layerId |
The layer ID. |
fieldName |
Name of the field. |
code |
Code of the coded value domain item. |
Return value
The returned value is a name of a coded value domain entry for the item.
String lookupCodedValueName(String restEndPoint, String layerId, String subType, String fieldName, String code) throws Exception
Description
This lookup function returns the code's name from the feature service layer coded value domain for a specific subType.
Parameter |
Value |
---|---|
restEndPoint |
Name of the endpoint that references the feature service. |
layerId |
The layer ID. |
subType |
Sub type in a feature layer. |
fieldName |
Name of the field. |
code |
Code of the coded value domain item. |
Return value
The returned value is a name of a coded value domain entry for the item.
String lookupCodedValueCode(String restEndPoint, String layerId, String fieldName, String name) throws Exception
Description
This lookup function returns the code for a name in the coded value domain.
Parameter |
Value |
---|---|
restEndPoint |
Name of the endpoint that references the feature service. |
layerId |
The layer ID. |
fieldName |
Name of the field. |
name |
Name of the code. |
Return value
The returned value is the code of the coded value domain item.
String lookupCodedValueCode(String restEndPoint, String layerId, String subType, String fieldName, String name) throws Exception
Description
This lookup function returns the code from the feature service layer name value domain for a specific subType.
Parameter |
Value |
---|---|
restEndPoint |
Name of the endpoint that references the feature service. |
layerId |
The layer ID. |
subType |
Sub type in a feature layer. |
fieldName |
Name of the field. |
name |
Name of the code. |
Return value
The returned value is the code for a specific subType name.