Any constant value which can be assigned to the variable is called literal/constant
// int literal
int myInt = 123;
byte myByte = 38;
short myShort = 2;
long myLong = 12345678910L; // long literal
double j = 3.14 // double literal
float h = 3.14f // float literal