public static enum AnnotationUseStyleCheck.ElementStyle extends Enum<AnnotationUseStyleCheck.ElementStyle>
列挙型定数と説明 |
---|
COMPACT
compact example
@SuppressWarnings({"unchecked","unused",})
or @SuppressWarnings("unchecked"). |
COMPACT_NO_ARRAY
compact example.]
|
EXPANDED
expanded example
@SuppressWarnings(value={"unchecked","unused",}).
|
IGNORE
mixed styles.
|
修飾子とタイプ | メソッドと説明 |
---|---|
static AnnotationUseStyleCheck.ElementStyle |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static AnnotationUseStyleCheck.ElementStyle[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final AnnotationUseStyleCheck.ElementStyle EXPANDED
@SuppressWarnings(value={"unchecked","unused",}).
public static final AnnotationUseStyleCheck.ElementStyle COMPACT
@SuppressWarnings({"unchecked","unused",})
@SuppressWarnings("unchecked").
public static final AnnotationUseStyleCheck.ElementStyle COMPACT_NO_ARRAY
@SuppressWarnings("unchecked").
public static final AnnotationUseStyleCheck.ElementStyle IGNORE
public static AnnotationUseStyleCheck.ElementStyle[] values()
for(AnnotationUseStyleCheck.ElementStyle c: AnnotationUseStyleCheck.ElementStyle.values()) System.out.println(c);
public static AnnotationUseStyleCheck.ElementStyle valueOf(String name)
name返される列挙型定数の名前
- IllegalArgumentException指定された名前を持つ定数を
- この列挙型が持っていない場合NullPointerException引数がnullの場合
Copyright © 2001-2013. All Rights Reserved.