Related: How do I create a static local variable in Java?
Pardon if this is a duplicate; I was pretty sure this would have been
Why not create a static readonly member on your class and initialize it in a static constructor maybe?
static readonly
This will give you the same performance benefit - it will only get initialised once.