Class CssEnumUtil
java.lang.Object
com.webfirmframework.wffweb.css.core.CssEnumUtil
-
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
contains
(String cssValue, Collection<String> cssValues, int lowestLength, int highestLength) checks whether the givencssValues
contains the givencssValue
.
-
Method Details
-
contains
public static boolean contains(String cssValue, Collection<String> cssValues, int lowestLength, int highestLength) checks whether the givencssValues
contains the givencssValue
.- Parameters:
cssValue
- the value to be checked.cssValues
- thecssValue
will 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
cssValues
contains the givencssValue
, and the length ofcssValue
is not less thanlowestLength
and not greater thanhighestLength
. - Since:
- 1.0.0
-