In Java, primitive types are the basic data types built into the language: byte, short, int, long, float, double, char, and boolean. Among the options, only 'byte' is a primitive type. 'String' is a class, 'integer' is not a valid keyword (the primitive is 'int'), and 'Float' is a wrapper class (the primitive is 'float').