String is a Java type that represents a string of characters (text).
String is not a primitive type, which is why it needs to be written with a capital S.
For example, we can make a String variable like this:
String name = "Karel";
String emptyString = "";