@Published(tag="architect") public enum BasePath extends java.lang.Enum<BasePath>
| Enum Constant and Description | 
|---|
INPUT
入力ファイルのベースパス 
 | 
OUTPUT
出力ファイルのベースパス 
 | 
SQLLOADER_CONTROL
SQLLoaderに使用するコントロールファイルのベースパス 
 | 
SQLLOADER_OUTPUT
SQLLoaderが出力するファイルのベースパス 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getKey()
ベースパスのキーを取得する。 
 | 
static BasePath | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static BasePath[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final BasePath INPUT
public static final BasePath OUTPUT
public static final BasePath SQLLOADER_CONTROL
public static final BasePath SQLLOADER_OUTPUT
public static BasePath[] values()
for (BasePath c : BasePath.values()) System.out.println(c);
public static BasePath valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getKey()