Instantiate private inner class with java reflection

Is it possible to instantiate a private inner class from another class using Java reflection. For example if I took this code public class Main { public static void main(String[] args) {} } ...