What would be the benefit of depending on an external library for just a constant? If your not using code from that library I would advise to define the constant in your own project.
If you use the comma-constant all over the place in your code try to find a common interface/class and define the constant in that interface/class.
If there is no common interface/class create an enum with a logical name. Do not create a class or interface just for wrapping a constant.
If you need the comma-constant in a single class declare it in that class. (either protected or private).
See also What is the best way to implement constants in Java?
But if you really want to use a third-party library, you might want to look at:
https://github.com/google/caja/blob/master/src/com/google/caja/lexer/Punctuation.java