I have a class containing a static create method.
public class TestClass { public static TestClass create() { return new TestClass&l
Assuming you are asking about specifying the type explicitly in case type inference fails, you can use TestClass.create() (notice how the type is after the . as opposed to before).
TestClass.create()
.