Package net.sf.logsaw.core.query.model

Examples of net.sf.logsaw.core.query.model.DateRestriction


      Operator op, Date val) {
    Assert.isNotNull(op, "op"); //$NON-NLS-1$
    Assert.isNotNull(fld, "fld"); //$NON-NLS-1$
    switch (op.getId()) {
    case Operators.ID_OP_BEFORE:
      return new DateRestriction(fld, Operators.OPERATOR_BEFORE, val);
    case Operators.ID_OP_AFTER:
      return new DateRestriction(fld, Operators.OPERATOR_AFTER, val);
    }
    Assert.isTrue(false, "Unsupported operator: " + op.getLabel()); //$NON-NLS-1$
    return null;
  }
View Full Code Here

TOP

Related Classes of net.sf.logsaw.core.query.model.DateRestriction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.