Schnittstelle IStringExaminer

Alle bekannten Implementierungsklassen:
StringExaminer

public interface IStringExaminer
Version:
2025-03-01
Autor:
Silvan Wyss
  • Methodendetails

    • isLowerCase

      boolean isLowerCase(String string)
      Parameter:
      string -
      Gibt zurück:
      true if the given string is in lower case, false otherwise.
    • isPascalCase

      boolean isPascalCase(String string)
      Parameter:
      string -
      Gibt zurück:
      true if the given string is in pascal case.
    • startsWithIgnoringCase

      boolean startsWithIgnoringCase(String string, String prefix)
      Parameter:
      string -
      prefix -
      Gibt zurück:
      true if the given string starts with the given prefix ignoring case, false otherwise.