This is basic Java notiation for the "long" datatype.
Usually, using a digit like "1" is understood as a regular "int".
So, specifying the number as "1L" ensures that the digit is understood as a long integer.
In the Encoder class, this statement is initializing the variable to 1 long.
Refer to the Java Sun website for help with Java datatypes.