Interface ContainerConstraint
-
- All Known Subinterfaces:
CheckBoxGroup,DropDown,FileInput,Fragment,Panel,TermsAndConditions
- All Known Implementing Classes:
AbstractContainerImpl
@ProviderType public interface ContainerConstraintA interface which specifies the different form container constraints- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default @Nullable java.lang.IntegergetMaxItems()Returns the maximum items of the container (ie array data type)default @Nullable java.lang.IntegergetMaxOccur()Returns the maximum occurrence of the container (ie array data type)default @Nullable java.lang.IntegergetMinItems()Returns the minimum items of the container (ie array data type)default @Nullable java.lang.IntegergetMinOccur()Returns the minimum occurrence of the container (ie array data type)default @Nullable java.lang.BooleanisRepeatable()
-
-
-
Method Detail
-
getMinItems
@Nullable default @Nullable java.lang.Integer getMinItems()
Returns the minimum items of the container (ie array data type)- Returns:
- the minimum items
- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
getMaxItems
@Nullable default @Nullable java.lang.Integer getMaxItems()
Returns the maximum items of the container (ie array data type)- Returns:
- the maximum items
- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
getMinOccur
@Nullable default @Nullable java.lang.Integer getMinOccur()
Returns the minimum occurrence of the container (ie array data type)- Returns:
- the minimum occurrence
- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
getMaxOccur
@Nullable default @Nullable java.lang.Integer getMaxOccur()
Returns the maximum occurrence of the container (ie array data type)- Returns:
- the maximum occurrence
- Since:
- com.adobe.cq.forms.core.components.models.form 0.0.1
-
isRepeatable
@Nullable default @Nullable java.lang.Boolean isRepeatable()
-
-