I can\'t find out what << means in Java because I can\'t search for it on Google - I am absolutely lost!
<<
The code in question is:
Its a left bit shift
Left shift a number of bits. It is equivalent to multiplying by two that many times.
It's used for setting specific bits in a byte, or specific bytes in a word.