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

de.uni_hildesheim.sse.monitoring.runtime.boot.BooleanValue Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package de.uni_hildesheim.sse.monitoring.runtime.boot;

/**
 * A "trinary" boolean value, indicating that in the {@link #DEFAULT} case 
 * the concrete value should be taken from the global configuration.
 * 
 * @author Holger Eichelberger
 * @since 1.00
 * @version 1.00
 */
public enum BooleanValue {

    /**
     * Unknown, take the value from the global configuration.
     */
    DEFAULT,
    
    /**
     * True.
     */
    TRUE,
    
    /**
     * False.
     */
    FALSE;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy