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

org.biojava.utils.TriState Maven / Gradle / Ivy

There is a newer version: 1.9.7
Show newest version


package org.biojava.utils;

/**
 * Class that represents the tristate values possible in
 * a logical operation: true, false and indeterminate.
 *
 * @author David Huen
 */
public final class TriState
{
    public static final TriState TRUE = new TriState("TRUE");
    public static final TriState FALSE = new TriState("FALSE");
    public static final TriState INDETERMINATE = new TriState("INDETERMINATE");


    private TriState(String description)
    {
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy