class ConstructorInner {
	static class Inner {
		@java.lang.SuppressWarnings("all")
		private Inner() {
		}
		@java.lang.SuppressWarnings("all")
		public static ConstructorInner.Inner of() {
			return new ConstructorInner.Inner();
		}
	}
}