public enum ErpEdition extends Enum<ErpEdition>
Enum Constant and Description |
---|
CLOUD |
ON_PREMISE |
Modifier and Type | Method and Description |
---|---|
static ErpEdition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErpEdition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErpEdition CLOUD
public static final ErpEdition ON_PREMISE
public static ErpEdition[] values()
for (ErpEdition c : ErpEdition.values()) System.out.println(c);
public static ErpEdition 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 nullCopyright © 2019 SAP SE. All rights reserved.