Interface CustomFieldSetType

All Superinterfaces:
FieldType
All Known Implementing Classes:
CustomFieldSetTypeImpl

public interface CustomFieldSetType extends FieldType

Values of a SetType Custom Field are sets of values of the specified elementType (without duplicate elements).


Example to create an instance using the builder pattern

     CustomFieldSetType customFieldSetType = CustomFieldSetType.builder()
             .elementType(elementTypeBuilder -> elementTypeBuilder)
             .build()