o

ackcord.util

Verifier

object Verifier

Source
Verifier.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Verifier
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. 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.

  8. 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.

  9. 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.

  10. def stringLength(s: String): Int

    Gets the length of a string in code points