ValidationState

works.iterative.forms.ValidationState
See theValidationState companion object
sealed trait ValidationState[+OutputValue]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Invalid
class Unknown
class Valid[OutputValue]
Self type
ValidationState[OutputValue]

Members list

Value members

Abstract methods

def isValid: Boolean

Concrete methods

def flatMap[B](f: OutputValue => ValidationState[B]): ValidationState[B]
def isInvalid: Boolean
def map[B](f: OutputValue => B): ValidationState[B]
def toOption: Option[OutputValue]