Class FieldGroup


  • public class FieldGroup
    extends java.lang.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
      java.util.List<Contingency> getContingencies()
      Gets an unmodifiable list of contingencies that define possible values for fields in this field group.
      java.util.List<java.lang.String> getFields()
      Gets an unmodifiable list of names of fields that participate in this field group.
      java.lang.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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getContingencies

        public java.util.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 java.util.List<java.lang.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 java.lang.String getName()
        Gets the name that uniquely identifies this field group.
        Returns:
        the name that uniquely identifies this field group
        Since:
        100.13.0