Class CodedValueDomainDescription

    • Constructor Detail

      • CodedValueDomainDescription

        public CodedValueDomainDescription​(java.lang.String name,
                                           Field.Type fieldType,
                                           java.lang.Iterable<CodedValueDescription> values)
        Creates a new coded value domain description object with the specified name and coded values.
        Parameters:
        name - the coded value domain's name
        fieldType - the coded value domain's field type
        values - the coded value domain's coded values
        Throws:
        java.lang.IllegalArgumentException - if name is null
        java.lang.IllegalArgumentException - if fieldType is null
        java.lang.IllegalArgumentException - if values is null
        Since:
        100.14.0
    • Method Detail

      • getValues

        public java.util.List<CodedValueDescription> getValues()
        Gets the coded value domain's coded values.

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

        Returns:
        a mutable list of coded value domain's coded values
        Since:
        100.14.0