All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brettonw.bag.expr.BooleanExpr Maven / Gradle / Ivy

Go to download

Bag provides two container classes for text-based storage of constrained types in an array (BagArray) or as a map (BagObject), with a means of serializing objects to and from these container types.

There is a newer version: 5.10.5
Show newest version
package com.brettonw.bag.expr;

import com.brettonw.bag.Bag;

abstract public class BooleanExpr extends Expr {
    public boolean evaluateIsTrue (Bag bag) {
        return (Boolean) evaluate (bag);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy