public enum ImportRuleSubject extends Enum<ImportRuleSubject>
| Enum Constant and Description | 
|---|
DATABASE_CONNECTION  | 
JOB  | 
TRANSFORMATION  | 
| Modifier and Type | Method and Description | 
|---|---|
static ImportRuleSubject | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ImportRuleSubject[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ImportRuleSubject TRANSFORMATION
public static final ImportRuleSubject JOB
public static final ImportRuleSubject DATABASE_CONNECTION
public static ImportRuleSubject[] values()
for (ImportRuleSubject c : ImportRuleSubject.values()) System.out.println(c);
public static ImportRuleSubject valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null