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

edu.uiuc.ncsa.security.util.functor.logic.jTrue Maven / Gradle / Ivy

package edu.uiuc.ncsa.security.util.functor.logic;

import edu.uiuc.ncsa.security.util.functor.JFunctorImpl;

import static edu.uiuc.ncsa.security.util.functor.FunctorTypeImpl.TRUE;

/**
 * The functor that is always logically true.
 * 

Created by Jeff Gaynor
* on 3/23/18 at 9:54 AM */ public class jTrue extends JFunctorImpl { public jTrue() { super(TRUE); } @Override public Object execute() { executed = true; result = Boolean.TRUE; return result; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy