| TextP | TextP. clone() |  | 
| static TextP | TextP. containing(String value) | Determines if String does contain the given value. | 
| static TextP | TextP. containing(GValue<String> value) | Determines if String does contain the given value. | 
| static TextP | TextP. endingWith(String value) | Determines if String does start with the given value. | 
| static TextP | TextP. endingWith(GValue<String> value) | Determines if String does start with the given value. | 
| static TextP | TextP. notContaining(String value) | Determines if String does not contain the given value. | 
| static TextP | TextP. notContaining(GValue<String> value) | Determines if String does not contain the given value. | 
| static TextP | TextP. notEndingWith(String value) | Determines if String does not start with the given value. | 
| static TextP | TextP. notEndingWith(GValue<String> value) | Determines if String does not start with the given value. | 
| static TextP | TextP. notRegex(String value) | Determines if String has no match with the given regex pattern and the reference implementation treats it as a
 simple negation of the evaluation of the pattern match of  regex(String). | 
| static TextP | TextP. notRegex(GValue<String> value) | Determines if String has no match with the given regex pattern and the reference implementation treats it as a
 simple negation of the evaluation of the pattern match of  regex(String). | 
| static TextP | TextP. notStartingWith(String value) | Determines if String does not start with the given value. | 
| static TextP | TextP. notStartingWith(GValue<String> value) | Determines if String does not start with the given value. | 
| static TextP | TextP. regex(String value) | Determines if String has a match with the given regex pattern. | 
| static TextP | TextP. regex(GValue<String> value) | Determines if String has a match with the given regex pattern. | 
| static TextP | TextP. startingWith(String value) | Determines if String does start with the given value. | 
| static TextP | TextP. startingWith(GValue<String> value) | Determines if String does start with the given value. |