public static enum SystemSetup.Process extends java.lang.Enum<SystemSetup.Process>
| Enum Constant and Description |
|---|
ALL
The method gets called during init AND update process.
|
INIT
The method gets called only during init process.
|
NOTDEFINED
The method uses the setting of the class annotation definition.
|
UPDATE
The method gets called only during update process.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAll() |
boolean |
isInit() |
boolean |
isUpdate() |
static SystemSetup.Process |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SystemSetup.Process[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemSetup.Process INIT
public static final SystemSetup.Process UPDATE
public static final SystemSetup.Process ALL
public static final SystemSetup.Process NOTDEFINED
public static SystemSetup.Process[] values()
for (SystemSetup.Process c : SystemSetup.Process.values()) System.out.println(c);
public static SystemSetup.Process 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 nullpublic boolean isInit()
true if Process is INIT or ALL.public boolean isUpdate()
true if Process is UPDATE or ALL.public boolean isAll()
true if Process is ALL.Copyright © 2018 SAP SE. All Rights Reserved.