LoginSignup
5
1

More than 3 years have passed since last update.

formatter-maven-pluginを使用したenumのフォーマット方法(Java)

Last updated at Posted at 2020-05-27

概要

formatter-maven-plugin を使用してenumのコードの自動フォーマットを行います。

実現したいフォーマット

実行前

public enum Answer {

  YES(1),NO(2),MAYBE(3);
}

実行後

public enum Answer {

  YES(1),
  NO(2),
  MAYBE(3);
}

設定箇所

設定ファイル(xml)の alignment_for_enum_constants の値を 49 にすることで上記フォーマットをかけることができました。

    <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="49"/>
5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1