see

IResult

trait IResult extends AnyRef

Interface describing an evaluation result. Pure trait, so we can use it from Java.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. IResult
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def dump: String

  2. abstract def size: Int

    Number of contained elements, if any.

  3. abstract def toBig: BigDecimal

    Forces result into Java BigDecimal, if possible.

  4. abstract def toBigI: BigInt

  5. abstract def toBool: Boolean

    Forces result into java boolean.

    Forces result into java boolean. Guaranteed to succeed.

  6. abstract def toDouble: Double

    Forces result into Java double, if possible.

  7. abstract def toJava: AnyRef

    Converts a See result into its Java representation, if any.

    Converts a See result into its Java representation, if any. Consult the Sel documentation to see which Java class will be generated from any specific type.

    If no Java equivalent exists for a given Sel result, an EvalException will be thrown.

  8. abstract def toLong: Long

    Forces result into Java long, if possible.

  9. abstract def toStr: String

    Forces result into a reparsable Java string representation.