
org.snpeff.stats.BooleanMutable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SnpEff Show documentation
Show all versions of SnpEff Show documentation
Variant annotation and effect prediction package.
The newest version!
package org.snpeff.stats;
/**
* A mutable boolean
*/
public class BooleanMutable {
public boolean value = false;
public BooleanMutable() {
}
public BooleanMutable(boolean value) {
this.value = value;
}
public boolean is() {
return value;
}
public void set(boolean value) {
this.value = value;
}
public void setFalse() {
value = false;
}
public void setTrue() {
value = true;
}
public void toggle() {
value = !value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy