B byte signed byte
C char Unicode character code point in the Basic Multilingual Plane,
encoded with UTF-16
D double double-precision floating-point value
F float single-precision floating-point value
I int integer
J long long integer
L ClassName ; reference an instance of class ClassName
S short signed short
Z boolean true or false
[ reference one array dimension
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Return the boxed wrapper type for a primitive Class. If the input is null or not a
primitive, it is returned unchanged. Examples: int.class -> Integer.class,
void.class -> Void.class.
Return the primitive type for a boxed wrapper Class. If the input is null or not a
wrapper, it is returned unchanged. Examples: Integer.class -> int.class.