Result

oxygen.ui.web.component.FormWidget.Result
See theResult companion object
sealed trait Result[+Value]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Error
class Success[Value]

Members list

Value members

Concrete methods

final def flatMap[Value2](f: Value => Result[Value2]): Result[Value2]
final def flatMapEitherError[Value2](fields: List[String])(f: Value => EitherError[Value2]): Result[Value2]
final def flatMapEitherMessage[Value2](fields: List[String])(f: Value => EitherMessage[Value2]): Result[Value2]
final def flatMapEitherMessages[Value2](fields: List[String])(f: Value => EitherMessages[Value2]): Result[Value2]
final def flatMapEitherResult[Value2](f: Value => EitherResult[Value2]): Result[Value2]
final def map[Value2](f: Value => Value2): Result[Value2]
final def toEither: EitherResult[Value]
final def zipWith[Value2, Out](that: Result[Value2])(f: (Value, Value2) => Out): Result[Out]