Maybe the place where the programmer who wrote this has a rule that there must be no hard-coded constants in source code, and that constants should always be used by defining a static final variable for them. In my opinion, such a rule can be good, but in this example it has probably been taken too far.
Note that in general it's better to never use new Integer(...), use Integer.valueOf(...) instead. Class Integer can reuse objects if you use valueOf rather than explicitly creating a new Integer object.
public final static int CM_VALUE = 0x200;
public final static Integer CM = Integer.valueOf(CM_VALUE);
Even better, just use autoboxing, which make it even less necessary to have CM_VALUE:
public final static Integer CM = 0x200;
0x200and512are the same thing to the compiler, the representation is for the readers of the code. I have no context to this code, but if it's used for operations that depend on using bits and bytes, it could be easier to understand. – birryree Sep 30 '11 at 15:520x00000539? – Josh Lee Sep 30 '11 at 16:07