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

com.firefly.utils.ThreadLocalBoolean Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils;

public class ThreadLocalBoolean extends ThreadLocal {
	private final boolean defaultValue;

	public ThreadLocalBoolean() {
		this(false);
	}

	public ThreadLocalBoolean(boolean defaultValue) {
		this.defaultValue = defaultValue;
	}

	@Override
	protected Boolean initialValue() {
		return defaultValue ? Boolean.TRUE : Boolean.FALSE;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy