简体   繁体   中英

How to configure code Formatter in Eclipse to add new line after each element in enum?

When I format an enum using Ctrl + Shift + F in Eclipse It does not add a new line after each element in enum . Like this

public enum MyEnum
{
    ELEMENT(0),ELEMENT(1);
}

But I need a format like this:

public enum MyEnum
{
    ELEMENT(0),
    ELEMENT(1);
}

How can we configure Formatter in Eclipse to add new line after each element in enum ?

Go to Line Wrapping in Java Formatter. Expand 'enum' declaration and choose Constants . Select Wrap all elements, every element on a new line in Line wrapping policy and check Force split, even if line shorter than maximum line width . Apply and OK .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM