List of usage examples for org.apache.commons.lang3 Validate exclusiveBetween
@SuppressWarnings("boxing") public static void exclusiveBetween(final double start, final double end, final double value)
From source file:ca.uhn.fhir.jpa.dao.DaoConfig.java
public void setSubscriptionPurgeInactiveAfterMillis(Long theMillis) { if (theMillis != null) { Validate.exclusiveBetween(0, Long.MAX_VALUE, theMillis); }// www .ja va 2 s . co m mySubscriptionPurgeInactiveAfterMillis = theMillis; }