CamelCase in Code Completion

Use CamelCase in code completion to speed up your workflow.

Did you know that IntelliJ IDEA code completion supports camel case? This means we don't have to type the whole method name, or even the exact start of a method name, to get relevant code suggestions. In this example, when we type 'oi', IntelliJ IDEA suggests the variable name 'orderId'.

Camel case in code completion


Related Resources

Create an Editor Fold
Create an Editor Fold
Create an editor fold to hide parts of your class which can make it more readable.
Generate Overrides for equals(), hashCode() and toString()
Generate Overrides for equals(), hashCode() and toString()
We can generate the code to override the equals and hashCode methods.
Surround With
Surround With
Surround your code with common programming constructs.