Package gnu.expr

Class CaseExp.CaseClause

  • Enclosing class:
    CaseExp

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

      Constructors 
      Constructor Description
      CaseClause​(Expression exp)
      Constructor for an else clause of the form (else expression+)
      CaseClause​(Expression[] datums, Expression exp)
      Constructor for a clause of the form ((datum*) expression+)
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • 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+)