Error: el nombre del campo no puede ser declarado estático

public class Application {
    public static void main(String[] args) {
        final class Constants {
            public static String name = "globe";
        }
        Thread thread = new Thread(new Runnable() {
            @Override
            public void run() {
                System.out.println(Constants.name);
            }
        });
        thread.start();
    }
}

Error de compilación:The field name cannot be declared static in a non-static inner type, unless initialized with a constant expression

¿Solución a esto?

Respuestas a la pregunta(2)

Su respuesta a la pregunta