Package io.keikai.api.model
Interface Validation
-
- All Known Implementing Classes:
ValidationImpl
public interface Validation
Represents data validation for a worksheet range.- Author:
- henri
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Validation.AlertStyle
static class
Validation.OperatorType
static class
Validation.ValidationType
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Validation.AlertStyle
getAlertStyle()
String
getErrorMessage()
String
getErrorTitle()
String
getFormula1()
String
getFormula2()
String
getInputMessage()
String
getInputTitle()
Validation.OperatorType
getOperatorType()
Validation.ValidationType
getValidationType()
boolean
isIgnoreBlank()
boolean
isInCellDropdown()
boolean
isShowError()
boolean
isShowInput()
void
setAlertStyle(Validation.AlertStyle alertStyle)
void
setErrorMessage(String message)
void
setErrorTitle(String title)
void
setFormula1(String formula)
void
setFormula2(String formula2)
void
setIgnoreBlank(boolean ignore)
void
setInCellDropdown(boolean show)
void
setInputMessage(String message)
void
setInputTitle(String title)
void
setOperatorType(Validation.OperatorType type)
void
setShowError(boolean show)
void
setShowInput(boolean show)
void
setValidationType(Validation.ValidationType type)
-
-
-
Method Detail
-
getAlertStyle
Validation.AlertStyle getAlertStyle()
-
setAlertStyle
void setAlertStyle(Validation.AlertStyle alertStyle)
-
setIgnoreBlank
void setIgnoreBlank(boolean ignore)
-
isIgnoreBlank
boolean isIgnoreBlank()
-
setInCellDropdown
void setInCellDropdown(boolean show)
-
isInCellDropdown
boolean isInCellDropdown()
-
setShowInput
void setShowInput(boolean show)
-
isShowInput
boolean isShowInput()
-
setShowError
void setShowError(boolean show)
-
isShowError
boolean isShowError()
-
setInputTitle
void setInputTitle(String title)
-
setInputMessage
void setInputMessage(String message)
-
getInputTitle
String getInputTitle()
-
getInputMessage
String getInputMessage()
-
setErrorTitle
void setErrorTitle(String title)
-
setErrorMessage
void setErrorMessage(String message)
-
getErrorTitle
String getErrorTitle()
-
getErrorMessage
String getErrorMessage()
-
getValidationType
Validation.ValidationType getValidationType()
-
setValidationType
void setValidationType(Validation.ValidationType type)
-
getOperatorType
Validation.OperatorType getOperatorType()
-
setOperatorType
void setOperatorType(Validation.OperatorType type)
-
getFormula1
String getFormula1()
-
getFormula2
String getFormula2()
-
setFormula1
void setFormula1(String formula)
-
setFormula2
void setFormula2(String formula2)
-
-