public static enum SystemSetup.Type extends Enum<SystemSetup.Type>
| Enum Constant and Description |
|---|
ALL
The method is called in essential and project data creation.
|
ESSENTIAL
The method is called during the essential data creation.
|
NOTDEFINED
The method uses the setting of the class annotation definition.
|
PROJECT
The method is called during the project data creation.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAll() |
boolean |
isEssential() |
boolean |
isProject() |
static SystemSetup.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemSetup.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemSetup.Type ESSENTIAL
public static final SystemSetup.Type PROJECT
public static final SystemSetup.Type ALL
public static final SystemSetup.Type NOTDEFINED
public static SystemSetup.Type[] values()
for (SystemSetup.Type c : SystemSetup.Type.values()) System.out.println(c);
public static SystemSetup.Type 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 nullpublic boolean isProject()
true if Type is PROJECT or ALL.public boolean isEssential()
true if Type is ESSENTIAL or ALL.public boolean isAll()
true if Type is ALL.Copyright © 2017 SAP SE. All Rights Reserved.