edu.rice.cs.drjava.model.repl.newjvm
Interface InterpretResult.Visitor<T>

Enclosing class:
InterpretResult

public static interface InterpretResult.Visitor<T>


Method Summary
 T forBooleanValue(Boolean val)
           
 T forBusy()
           
 T forCharValue(Character val)
           
 T forException(String message)
           
 T forNoValue()
           
 T forNumberValue(Number val)
           
 T forObjectValue(String valString)
           
 T forStringValue(String val)
           
 T forUnexpectedException(Throwable t)
           
 

Method Detail

forNoValue

T forNoValue()

forStringValue

T forStringValue(String val)

forCharValue

T forCharValue(Character val)

forNumberValue

T forNumberValue(Number val)

forBooleanValue

T forBooleanValue(Boolean val)

forObjectValue

T forObjectValue(String valString)

forException

T forException(String message)

forUnexpectedException

T forUnexpectedException(Throwable t)

forBusy

T forBusy()