object Verifier
- Source
- Verifier.scala
- Alphabetic
- By Inheritance
- Verifier
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- 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