public static enum Preprocessor.TargetType extends java.lang.Enum<Preprocessor.TargetType>
修飾子とタイプ | フィールドと説明 |
---|---|
static com.google.common.collect.ImmutableMap<java.lang.String,Preprocessor.TargetType> |
byName
lookup from initial-capital name to type, e.g.
|
static com.google.common.collect.ImmutableMap<Preprocessor.TargetType,java.lang.String> |
byType
lookup from type to initial-capital name, e.g.
|
修飾子とタイプ | メソッドと説明 |
---|---|
static Preprocessor.TargetType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static Preprocessor.TargetType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Preprocessor.TargetType IMAGE
public static final Preprocessor.TargetType FILESET
public static final Preprocessor.TargetType DATASET
public static final Preprocessor.TargetType PROJECT
public static final Preprocessor.TargetType WELL
public static final Preprocessor.TargetType PLATE
public static final Preprocessor.TargetType SCREEN
public static final com.google.common.collect.ImmutableMap<java.lang.String,Preprocessor.TargetType> byName
IMAGE
public static final com.google.common.collect.ImmutableMap<Preprocessor.TargetType,java.lang.String> byType
IMAGE
to "/Image"public static Preprocessor.TargetType[] values()
for(Preprocessor.TargetType c: Preprocessor.TargetType.values()) System.out.println(c);
public static Preprocessor.TargetType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合