public static enum AbapClassException.Mode extends Enum<AbapClassException.Mode>
| Enum Constant and Description |
|---|
EXCEPTION_CHAIN
only the exception chain and simple types are included in the serialized instance.
|
FULL
the complete available object graph is serialized.
|
OFF
Class exceptions are turned off.
|
| Modifier and Type | Method and Description |
|---|---|
static AbapClassException.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbapClassException.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbapClassException.Mode OFF
public static final AbapClassException.Mode FULL
public static final AbapClassException.Mode EXCEPTION_CHAIN
public static AbapClassException.Mode[] values()
for (AbapClassException.Mode c : AbapClassException.Mode.values()) System.out.println(c);
public static AbapClassException.Mode 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 © 2022 SAP. All rights reserved.