Class TextP

    • Method Detail

      • startingWith

        public static TextP startingWith​(String value)
        Determines if String does start with the given value.
        Since:
        3.4.0
      • notStartingWith

        public static TextP notStartingWith​(String value)
        Determines if String does not start with the given value.
        Since:
        3.4.0
      • endingWith

        public static TextP endingWith​(String value)
        Determines if String does start with the given value.
        Since:
        3.4.0
      • notEndingWith

        public static TextP notEndingWith​(String value)
        Determines if String does not start with the given value.
        Since:
        3.4.0
      • containing

        public static TextP containing​(String value)
        Determines if String does contain the given value.
        Since:
        3.4.0
      • notContaining

        public static TextP notContaining​(String value)
        Determines if String does not contain the given value.
        Since:
        3.4.0