object Verifier
- Source
- Verifier.scala
- Alphabetic
- By Inheritance
- Verifier
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def requireLength(value: String, name: String, min: Int = -1, max: Int = -1): Unit
Verifies the length of a string in codepoints.
Verifies the length of a string in codepoints.
- value
The string to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireLengthJO(value: JsonOption[String], name: String, min: Int = -1, max: Int = -1): Unit
Verifies the length of a string in codepoints.
Verifies the length of a string in codepoints.
- value
The string to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireLengthJOS(seq: JsonOption[Seq[_]], name: String, min: Int = -1, max: Int = -1)(implicit dummyImplicit: DummyImplicit): Unit
Verifies the length of a sequence.
Verifies the length of a sequence.
- seq
The seq to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireLengthO(value: Option[String], name: String, min: Int = -1, max: Int = -1): Unit
Verifies the length of a string in codepoints.
Verifies the length of a string in codepoints.
- value
The string to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireLengthOS(seq: Option[Seq[_]], name: String, min: Int = -1, max: Int = -1)(implicit dummyImplicit: DummyImplicit): Unit
Verifies the length of a sequence.
Verifies the length of a sequence.
- seq
The seq to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireLengthS(seq: Seq[_], name: String, min: Int = -1, max: Int = -1): Unit
Verifies the length of a sequence.
Verifies the length of a sequence.
- seq
The seq to check.
- name
The name of the parameter it came from.
- min
The minimum length.
- max
The maximum length.
- def requireRange(i: Int, name: String, min: Int = -1, max: Int = -1): Unit
Verifies that a number is in a range..
Verifies that a number is in a range..
- i
The value to check.
- name
The name of the parameter it came from.
- min
The minimum value.
- max
The maximum value.
- def requireRangeJO(i: JsonOption[Int], name: String, min: Int = -1, max: Int = -1): Unit
Verifies that a number is in a range..
Verifies that a number is in a range..
- i
The value to check.
- name
The name of the parameter it came from.
- min
The minimum value.
- max
The maximum value.
- def requireRangeO(i: Option[Int], name: String, min: Int = -1, max: Int = -1): Unit
Verifies that a number is in a range..
Verifies that a number is in a range..
- i
The value to check.
- name
The name of the parameter it came from.
- min
The minimum value.
- max
The maximum value.
- def stringLength(s: String): Int
Gets the length of a string in code points
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])