Package gnu.expr

Class CaseExp.CaseClause

java.lang.Object
gnu.expr.CaseExp.CaseClause
Enclosing class:
CaseExp

public static class CaseExp.CaseClause extends Object
This class represent a clause of the case expression, of the form ((datum*) expression+) or (else expression+)
  • Constructor Details

    • CaseClause

      public CaseClause(Expression exp)
      Constructor for an else clause of the form (else expression+)
    • CaseClause

      public CaseClause(Expression[] datums, Expression exp)
      Constructor for a clause of the form ((datum*) expression+)