public static enum IConfig.CONFIG_TYPE_ENUM extends java.lang.Enum<IConfig.CONFIG_TYPE_ENUM>
| Enum Constant and Description |
|---|
declarative |
programmatic |
| Modifier and Type | Method and Description |
|---|---|
static IConfig.CONFIG_TYPE_ENUM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IConfig.CONFIG_TYPE_ENUM[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final IConfig.CONFIG_TYPE_ENUM declarative
public static final IConfig.CONFIG_TYPE_ENUM programmatic
public static IConfig.CONFIG_TYPE_ENUM[] values()
for (IConfig.CONFIG_TYPE_ENUM c : IConfig.CONFIG_TYPE_ENUM.values())
System.out.println(c);
public static IConfig.CONFIG_TYPE_ENUM 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 null