Interface IStringExaminer
- All Known Implementing Classes:
StringExaminer
public interface IStringExaminer
- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisLowerCase(String string) booleanisPascalCase(String string) booleanstartsWithIgnoringCase(String string, String prefix)
-
Method Details
-
isLowerCase
- Parameters:
string-- Returns:
- true if the given string is in lower case, false otherwise.
-
isPascalCase
- Parameters:
string-- Returns:
- true if the given string is in pascal case, false otherwise.
-
startsWithIgnoringCase
-