Yes, it is possible, but probably it is not a good idea.
You can do:
User(Object... args) {
Object someObject = args[0]; // Check for length!
}
This is called varargs in Java lingo. But you get all your arguments as simple Objects within an Object[] and have to find a method to interpret them. The caller does not know what parameter to put at what position. If you want to allow this you typically won't use a language with Java's type and binding system.
The prime alternative -"the Java way of doing it"- is to overload the method; you can have more than one method with a given name and different arguments in a type. Example:
User(long id, String name) { ... }
User(long id, String name, String address) { ... }
// and so on
This can be cumbersome, so the IDEs have tools to generate these for you (at least for constructors).