Class CssEnumUtil
java.lang.Object
com.webfirmframework.wffweb.css.core.CssEnumUtil
-
Method Summary
Modifier and TypeMethodDescriptionstatic booleancontains(String cssValue, Collection<String> cssValues, int lowestLength, int highestLength) checks whether the givencssValuescontains the givencssValue.
-
Method Details
-
contains
public static boolean contains(String cssValue, Collection<String> cssValues, int lowestLength, int highestLength) checks whether the givencssValuescontains the givencssValue.- Parameters:
cssValue- the value to be checked.cssValues- thecssValuewill be checked in thiscssValues.lowestLength- the lowest length of the string contained in the givencssValues.highestLength- the highest length of the string contained in the givencssValues.- Returns:
- true if the given
cssValuescontains the givencssValue, and the length ofcssValueis not less thanlowestLengthand not greater thanhighestLength. - Since:
- 1.0.0
-