Java: Static Factory Methods Question What is clear creation intent? (Click to reveal answer) Answer It makes object creation self-explanatory. Clear creation intent means that the method name tells you exactly what kind of object you're creating, reducing ambiguity. For example, `User.createAdminUser()` is more intuitive than `new User(true)`. Additional NotesWhat is clear creation intent? Track: Java Topic: Modern Java Focus: Static Factory Methods Topics: Java Modern Java Static Factory Methods