ArcGIS Runtime SDK for iOS: AGSCodedValueDescription Class Reference
ArcGIS Runtime SDK for iOS  100.15
AGSCodedValueDescription Class Reference

Description

An object that describes an AGSCodedValue to be created.

Creation of domains is currently only supported on mobile geodatabases, either created in ArcGIS Pro or via createWithFileURL:completion: (AGSGeodatabase).

Since
100.14
Inheritance diagram for AGSCodedValueDescription:
AGSObject

Instance Methods

(instancetype) - initWithName:value:
 

Class Methods

(instancetype) + codedValueDescriptionWithName:value:
 

Properties

NSString * name
 
id value
 

Method Documentation

◆ codedValueDescriptionWithName:value:

+ (instancetype) codedValueDescriptionWithName: (NSString *)  name
value: (id)  value 

Creates a new coded value description object with the specified name and value.

Parameters
nameThe coded value's name.
valueThe coded value's value.
Since
100.14

◆ initWithName:value:

- (instancetype) initWithName: (NSString *)  name
value: (id)  value 

Creates a new coded value description object with the specified name and value.

Parameters
nameThe coded value's name.
valueThe coded value's value.
Since
100.14

Property Documentation

◆ name

- (NSString*) name
readwritenonatomiccopy

The coded value's name.

Since
100.14

◆ value

- (id) value
readwritenonatomicstrong

The coded value's value.

For fields that utilize a coded value domain, the field type must match the type of the coded values.

Since
100.14