object StringMatcher extends StringMatcherPlatform

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StringMatcher
  2. StringMatcherPlatform
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class Base64Matcher extends StringMatcher[Array[Byte]]

    Base class for converting between Base64 strings and byte arrays.

    Base class for converting between Base64 strings and byte arrays. Use the AsBase64 or AsBase64UrlSafe objects rather than extending this yourself.

  2. class TokenSeparated[F[_], T] extends (String) => F[T]
    Definition Classes
    StringMatcherPlatform

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit val AsBoolean: StringMatcher[Boolean]
  5. implicit val AsDouble: StringMatcher[Double]
  6. implicit val AsInt: StringMatcher[Int]
  7. implicit val AsLong: StringMatcher[Long]
  8. implicit val AsTimeUnit: StringMatcher[TimeUnit]
  9. implicit val AsUUID: StringMatcher[UUID]
  10. implicit val AsUrl: StringMatcher[URL]
  11. implicit val Identity: StringMatcher[String]
  12. def apply[T](conversion: (String) => T): StringMatcher[T]
  13. def as[T](str: String)(implicit matcher: StringMatcher[T]): Option[T]
  14. def asBoolean(str: String): Option[Boolean]
  15. def asDouble(str: String): Option[Double]
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def asInt(str: String): Option[Int]
  18. def asLong(str: String): Option[Long]
  19. def asTimeUnit(str: String): Option[TimeUnit]
  20. def asUUID(str: String): Option[UUID]
  21. def asUrl(str: String): Option[URL]
  22. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  23. def commaSeparated[F[_], T](implicit factory: Factory[T, F[T]], segmentMatcher: StringMatcher[T]): TokenSeparated[F, T]
    Definition Classes
    StringMatcherPlatform
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  27. def fromAttempt[T](f: (String) => Try[T]): StringMatcher[T]
  28. def fromMatch[T](f: (String) => Option[T]): StringMatcher[T]
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. def tokenSeparated[F[_], T](separator: String)(implicit factory: Factory[T, F[T]], segmentMatcher: StringMatcher[T]): TokenSeparated[F, T]
    Definition Classes
    StringMatcherPlatform
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  41. object AsBase64 extends Base64Matcher

    Convert between raw bytes and their Base64-encoded forms.

    Convert between raw bytes and their Base64-encoded forms. The default encoding uses '+' and '/' characters.

  42. object AsBase64UrlSafe extends Base64Matcher

    Convert between raw bytes and their Base64-encoded forms.

    Convert between raw bytes and their Base64-encoded forms. The url-safe encoding uses '-' and '_' characters.

Inherited from StringMatcherPlatform

Inherited from AnyRef

Inherited from Any

Ungrouped