de.uni_hildesheim.sse.monitoring.runtime.boot.BooleanValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spass-meter-annotations Show documentation
Show all versions of spass-meter-annotations Show documentation
The annotations for marking Source code for instrumentation with SPASS-meter.
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