Package com.uc4.api.prompt
Interface PromptInterfaces.Constraints<T>
-
- Type Parameters:
T
- Type
- All Known Implementing Classes:
DateElement
,NumberElement
,TimeElement
,TimeStampElement
- Enclosing interface:
- PromptInterfaces
public static interface PromptInterfaces.Constraints<T>
Represents min/max constraints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getMaxValue()
T
getMinValue()
void
setMaxValue(T maxValue)
void
setMinValue(T minValue)
-
-
-
Method Detail
-
getMaxValue
T getMaxValue()
- Returns:
- maximum value @nullable
-
setMaxValue
void setMaxValue(T maxValue)
- Parameters:
maxValue
- set maximum value @nullable
-
getMinValue
T getMinValue()
- Returns:
- minimum value @nullable
-
setMinValue
void setMinValue(T minValue)
- Parameters:
minValue
- set minimum value @nullable
-
-