Class NotStartsWithMatcher
java.lang.Object
io.fluentlenium.core.filter.matcher.AbstractMatcher
io.fluentlenium.core.filter.matcher.NotStartsWithMatcher
Matcher checking that actual doesn't start with input value.
-
Constructor Summary
ConstructorsConstructorDescriptionNotStartsWithMatcher(String value) Creates a not starts with matcher.NotStartsWithMatcher(Pattern value) Creates a not starts with matcher. -
Method Summary
Modifier and TypeMethodDescriptionReturn the matcher typebooleanisSatisfiedBy(String currentValue) Check if the matcher is matched given the valueMethods inherited from class io.fluentlenium.core.filter.matcher.AbstractMatcher
getMatcherSymbol, getPattern, getValue, isCssFilterSupported, toString
-
Constructor Details
-
NotStartsWithMatcher
Creates a not starts with matcher.- Parameters:
value- input value
-
NotStartsWithMatcher
Creates a not starts with matcher.- Parameters:
value- input value
-
-
Method Details
-
getMatcherType
Description copied from class:AbstractMatcherReturn the matcher type- Specified by:
getMatcherTypein classAbstractMatcher- Returns:
- matcher type
-
isSatisfiedBy
Description copied from class:AbstractMatcherCheck if the matcher is matched given the value- Specified by:
isSatisfiedByin classAbstractMatcher- Parameters:
currentValue- define the object of check name- Returns:
- boolean value for isSatisfiedBy
-