
com.evrythng.commons.domain.Size Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evrythng-commons Show documentation
Show all versions of evrythng-commons Show documentation
Public common EVRYTHNG classes.
/*
* (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