Interface IStringExaminer

All Known Implementing Classes:
StringExaminer

public interface IStringExaminer
Author:
Silvan Wyss
  • Method Details

    • isLowerCase

      boolean isLowerCase(String string)
      Parameters:
      string -
      Returns:
      true if the given string is in lower case, false otherwise.
    • isPascalCase

      boolean isPascalCase(String string)
      Parameters:
      string -
      Returns:
      true if the given string is in pascal case, false otherwise.
    • startsWithIgnoringCase

      boolean startsWithIgnoringCase(String string, String prefix)
      Parameters:
      string -
      prefix -
      Returns:
      true if the given string starts with the given prefix ignoring case, false otherwise.