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

io.jonasg.bob.RequiredField Maven / Gradle / Ivy

package io.jonasg.bob;

/**
 * Container Object for a required field and its value
 * 
 * @param 
 *            the type of the required field its value
 */
@SuppressWarnings("unused")
public final class RequiredField {

	private T fieldValue;

	private final String fieldName;

	private final String typeName;

	private RequiredField(T fieldValue, String fieldName, String typeName) {
		this.fieldValue = fieldValue;
		this.fieldName = fieldName;
		this.typeName = typeName;
	}

	public static  RequiredField ofNameWithinType(String fieldName, String typeName) {
		return new RequiredField<>(null, fieldName, typeName);
	}

	public void set(T value) {
		this.fieldValue = value;
	}

	public T orElseThrow() {
		if (fieldValue == null) {
			throw new MandatoryFieldMissingException(fieldName, typeName);
		}
		return fieldValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy