c

es.weso.shex.validator

CheckResult

case class CheckResult[E, A, Log](log: Log, eitherResult: Either[E, A])(implicit evidence$1: Show[E], evidence$2: Show[A], evidence$3: Show[Log]) extends Product with Serializable

Source
CheckResult.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CheckResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CheckResult(log: Log, eitherResult: Either[E, A])(implicit arg0: Show[E], arg1: Show[A], arg2: Show[Log])

Value Members

  1. val eitherResult: Either[E, A]
  2. def errors: Seq[E]
  3. def getResult: Option[A]
  4. def isOK: Boolean
  5. val log: Log
  6. def results: List[A]
  7. def show: String
  8. def toEither: Either[E, A]