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