Interface ValidityStateFlags


@JsType(isNative=true, namespace="<global>") public interface ValidityStateFlags
  • Method Details

    • create

      @JsOverlay static ValidityStateFlags create()
    • isBadInput

      @JsProperty boolean isBadInput()
    • isCustomError

      @JsProperty boolean isCustomError()
    • isPatternMismatch

      @JsProperty boolean isPatternMismatch()
    • isRangeOverflow

      @JsProperty boolean isRangeOverflow()
    • isRangeUnderflow

      @JsProperty boolean isRangeUnderflow()
    • isStepMismatch

      @JsProperty boolean isStepMismatch()
    • isTooLong

      @JsProperty boolean isTooLong()
    • isTooShort

      @JsProperty boolean isTooShort()
    • isTypeMismatch

      @JsProperty boolean isTypeMismatch()
    • isValueMissing

      @JsProperty boolean isValueMissing()
    • setBadInput

      @JsProperty void setBadInput(boolean badInput)
    • setCustomError

      @JsProperty void setCustomError(boolean customError)
    • setPatternMismatch

      @JsProperty void setPatternMismatch(boolean patternMismatch)
    • setRangeOverflow

      @JsProperty void setRangeOverflow(boolean rangeOverflow)
    • setRangeUnderflow

      @JsProperty void setRangeUnderflow(boolean rangeUnderflow)
    • setStepMismatch

      @JsProperty void setStepMismatch(boolean stepMismatch)
    • setTooLong

      @JsProperty void setTooLong(boolean tooLong)
    • setTooShort

      @JsProperty void setTooShort(boolean tooShort)
    • setTypeMismatch

      @JsProperty void setTypeMismatch(boolean typeMismatch)
    • setValueMissing

      @JsProperty void setValueMissing(boolean valueMissing)