public interface StringConditions extends Conditions<java.lang.String>
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(java.lang.CharSequence charSequence)
Check that this contains the given sequence of characters.
|
boolean |
endsWith(java.lang.String suffix)
Check that this ends with the given string.
|
boolean |
equalTo(java.lang.String anotherString)
Check that this is equal to with the given string.
|
boolean |
equalToIgnoreCase(java.lang.String anotherString)
Check that this is equal to with the given string, ignoring case.
|
boolean |
matches(java.util.regex.Pattern pattern)
Check that this matches the given regular expression pattern.
|
boolean |
matches(java.lang.String regex)
Check that this matches the given regular expression string.
|
StringConditions |
not()
Negates this condition object.
|
boolean |
startsWith(java.lang.String prefix)
Check that this starts with the given string.
|
verifyStringConditions not()
Conditionsnot in interface Conditions<java.lang.String>boolean contains(java.lang.CharSequence charSequence)
charSequence - sequence of charactersboolean startsWith(java.lang.String prefix)
prefix - stringboolean endsWith(java.lang.String suffix)
suffix - stringboolean equalTo(java.lang.String anotherString)
anotherString - another stringboolean equalToIgnoreCase(java.lang.String anotherString)
anotherString - another stringboolean matches(java.lang.String regex)
regex - regular expression stringboolean matches(java.util.regex.Pattern pattern)
pattern - regular expression patternCopyright © 2018 FluentLenium. All Rights Reserved.