com.evrythng.commons.validation.Precondition Maven / Gradle / Ivy
/*
* (c) Copyright 2016 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.commons.validation;
public interface Precondition {
String name();
void testThrowing(TARGET target) throws ValidationException;
boolean test(TARGET target);
Precondition or(Precondition other);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy