どちらが良いですか? AnnotationConstants
は、典型的な定数クラスです注釈の定数クラスを作成する必要がありますか?
@SuppressWarnings("unchecked")
@SuppressWarnings(AnnotationConstants.UNCHECKED)
...
public final class AnnotationConstants {
private AnnotationConstants() { }
public static final String UNCHECKED = "unchecked";
...
}
私は定数のと反対の一般的な引数がたくさんあることを知っているクラス - - それはまさに私が何であるかではないに興味があります。 nstantsクラス具体的にはアノテーションは良いアイデアや悪い考えです。
私はenumsを使う考えが好きです。 +1。 –