Class

scala.util

Failure

Related Doc: package util

Permalink

final case class Failure[+T](exception: Throwable) extends Try[T] with Product with Serializable

Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, Try[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Failure
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Try
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Failure(exception: Throwable)

    Permalink

Type Members

  1. class WithFilter extends AnyRef

    Permalink

    We need a whole WithFilter class to honor the "doesn't create a new collection" contract even though it seems unlikely to matter much in a collection with max size 1.

    We need a whole WithFilter class to honor the "doesn't create a new collection" contract even though it seems unlikely to matter much in a collection with max size 1.

    Definition Classes
    Try

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. val exception: Throwable

    Permalink
  8. def failed: Try[Throwable]

    Permalink

    Inverts this Try.

    Inverts this Try. If this is a Failure, returns its exception wrapped in a Success. If this is a Success, returns a Failure containing an UnsupportedOperationException.

    Definition Classes
    FailureTry
  9. def filter(p: (T) ⇒ Boolean): Try[T]

    Permalink

    Converts this to a Failure if the predicate is not satisfied.

    Converts this to a Failure if the predicate is not satisfied.

    Definition Classes
    FailureTry
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def flatMap[U](f: (T) ⇒ Try[U]): Try[U]

    Permalink

    Returns the given function applied to the value from this Success or returns this if this is a Failure.

    Returns the given function applied to the value from this Success or returns this if this is a Failure.

    Definition Classes
    FailureTry
  12. def flatten[U](implicit ev: <:<[T, Try[U]]): Try[U]

    Permalink

    Transforms a nested Try, ie, a Try of type Try[Try[T]], into an un-nested Try, ie, a Try of type Try[T].

    Transforms a nested Try, ie, a Try of type Try[Try[T]], into an un-nested Try, ie, a Try of type Try[T].

    Definition Classes
    FailureTry
  13. def foreach[U](f: (T) ⇒ U): Unit

    Permalink

    Applies the given function f if this is a Success, otherwise returns Unit if this is a Failure.

    Applies the given function f if this is a Success, otherwise returns Unit if this is a Failure.

    Note: If f throws, then this method may throw an exception.

    Definition Classes
    FailureTry
  14. def get: T

    Permalink

    Returns the value from this Success or throws the exception if this is a Failure.

    Returns the value from this Success or throws the exception if this is a Failure.

    Definition Classes
    FailureTry
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def getOrElse[U >: T](default: ⇒ U): U

    Permalink

    Returns the value from this Success or the given default argument if this is a Failure.

    Returns the value from this Success or the given default argument if this is a Failure.

    Note:: This will throw an exception if it is not a success and default throws an exception.

    Definition Classes
    Try
  17. def isFailure: Boolean

    Permalink

    Returns true if the Try is a Failure, false otherwise.

    Returns true if the Try is a Failure, false otherwise.

    Definition Classes
    FailureTry
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def isSuccess: Boolean

    Permalink

    Returns true if the Try is a Success, false otherwise.

    Returns true if the Try is a Success, false otherwise.

    Definition Classes
    FailureTry
  20. def map[U](f: (T) ⇒ U): Try[U]

    Permalink

    Maps the given function to the value from this Success or returns this if this is a Failure.

    Maps the given function to the value from this Success or returns this if this is a Failure.

    Definition Classes
    FailureTry
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. def orElse[U >: T](default: ⇒ Try[U]): Try[U]

    Permalink

    Returns this Try if it's a Success or the given default argument if this is a Failure.

    Returns this Try if it's a Success or the given default argument if this is a Failure.

    Definition Classes
    Try
  25. def recover[U >: T](rescueException: PartialFunction[Throwable, U]): Try[U]

    Permalink

    Applies the given function f if this is a Failure, otherwise returns this if this is a Success.

    Applies the given function f if this is a Failure, otherwise returns this if this is a Success. This is like map for the exception.

    Definition Classes
    FailureTry
  26. def recoverWith[U >: T](f: PartialFunction[Throwable, Try[U]]): Try[U]

    Permalink

    Applies the given function f if this is a Failure, otherwise returns this if this is a Success.

    Applies the given function f if this is a Failure, otherwise returns this if this is a Success. This is like flatMap for the exception.

    Definition Classes
    FailureTry
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toOption: Option[T]

    Permalink

    Returns None if this is a Failure or a Some containing the value if this is a Success.

    Returns None if this is a Failure or a Some containing the value if this is a Success.

    Definition Classes
    Try
  29. def transform[U](s: (T) ⇒ Try[U], f: (Throwable) ⇒ Try[U]): Try[U]

    Permalink

    Completes this Try by applying the function f to this if this is of type Failure, or conversely, by applying s if this is a Success.

    Completes this Try by applying the function f to this if this is of type Failure, or conversely, by applying s if this is a Success.

    Definition Classes
    Try
  30. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def withFilter(p: (T) ⇒ Boolean): WithFilter

    Permalink

    Creates a non-strict filter, which eventually converts this to a Failure if the predicate is not satisfied.

    Creates a non-strict filter, which eventually converts this to a Failure if the predicate is not satisfied.

    Note: unlike filter, withFilter does not create a new Try. Instead, it restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    As Try is a one-element collection, this may be a bit overkill, but it's consistent with withFilter on Option and the other collections.

    p

    the predicate used to test elements.

    returns

    an object of class WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this Try which satisfy the predicate p.

    Definition Classes
    Try
    Annotations
    @inline()

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Product

Inherited from Equals

Inherited from Try[T]

Inherited from AnyRef

Inherited from Any

Ungrouped