Can the value of a Java static final class variable be retrieved through reflection?
Yes. (Only there is no such thing as static, instance. It's static, non-instance.)
> If the underlying field is a static field, the obj argument is ignored; it may be null.
(include standard warning that most uses of reflection are a bad idea)