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

com.wix.mediaplatform.v7.image.Validation Maven / Gradle / Ivy

There is a newer version: 8.4.0
Show newest version
package com.wix.mediaplatform.v7.image;

public class Validation {

    public static boolean inRange(int value, int lowerInclusive, int upperInclusive) {
        return value >= lowerInclusive && value <= upperInclusive;
    }

    public static boolean inRange(float value, float lowerInclusive, float upperInclusive) {
        return value >= lowerInclusive && value <= upperInclusive;
    }

    public static boolean greaterThan(int value, int lowerInclusive) {
        return value >= lowerInclusive;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy