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

org.whizu.value.ValueBuilder Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package org.whizu.value;

abstract class ValueBuilder, V> extends AbstractValue {

	public ValueBuilder(String name) {
		super(name);
	}

	public T set(V value) {
		setValue(value);
		return getThis();
	}

	@SuppressWarnings("unchecked")
	private T getThis() {
		return (T) this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy