如何在 Eclipse 中配置代码格式化程序以在枚举中的每个元素之后添加新行?

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

当我使用 Ctrl + Shift + 格式化 enum 时Eclipse中的F 并没有在enum中的每个元素后面加一个new line。像这样

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

但我需要这样的格式:

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

我们如何在 Eclipse 中配置 Formatter 以在 enum[=27= 中的每个元素之后添加 new line ]?

转到 Java 格式化程序中的 Line Wrapping。展开 'enum' declaration 并选择 Constants。 Select Wrap all elements, every element on a new lineLine wrapping policy 并检查 Force split, even if line shorter than maximum line widthApplyOK.