Package com.esri.arcgisruntime.data
Class FieldGroup
- java.lang.Object
-
- com.esri.arcgisruntime.data.FieldGroup
-
public class FieldGroup extends Object
An object that defines a field group.- Since:
- 100.13.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Contingency>
getContingencies()
Gets an unmodifiable list of contingencies that define possible values for fields in this field group.List<String>
getFields()
Gets an unmodifiable list of names of fields that participate in this field group.String
getName()
Gets the name that uniquely identifies this field group.boolean
isEditingRestrictive()
Gets a boolean indicating whether fields in this field group are restricted to this field group's contingent values.
-
-
-
Method Detail
-
getContingencies
public List<Contingency> getContingencies()
Gets an unmodifiable list of contingencies that define possible values for fields in this field group.It is possible for a field group to contain no contingencies (either because none were authored, or existing ones were deleted). In this scenario, the field group will offer no suggested values, and will not result in any violations.
- Returns:
- an unmodifiable list of contingencies that define possible values for fields in this field group
- Since:
- 100.13.0
-
getFields
public List<String> getFields()
Gets an unmodifiable list of names of fields that participate in this field group.- Returns:
- an unmodifiable list of names of fields that participate in this field group
- Since:
- 100.13.0
-
isEditingRestrictive
public boolean isEditingRestrictive()
Gets a boolean indicating whether fields in this field group are restricted to this field group's contingent values.- Returns:
- a boolean indicating whether fields in this field group are restricted to this field group's contingent values
- Since:
- 100.13.0
-
getName
public String getName()
Gets the name that uniquely identifies this field group.- Returns:
- the name that uniquely identifies this field group
- Since:
- 100.13.0
-
-