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

com.evrythng.commons.domain.Size Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2016 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */

package com.evrythng.commons.domain;

import static com.evrythng.commons.validation.preconditions.GreaterThanOrEqualTo.greaterThanOrEqualTo;

public final class Size extends Value {

	public static Size of(final Integer value) {

		return new Size(value);
	}

	private Size(final Integer value) {

		super(value, greaterThanOrEqualTo(0));
	}

	public final Integer value() {

		return internalValue();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy