Package com.sap.conn.jco
Enum AbapClassException.Mode
- All Implemented Interfaces:
Serializable
,Comparable<AbapClassException.Mode>
,Constable
- Enclosing class:
- AbapClassException
The Mode enumeration describes how class exceptions should be handled by
a server system.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptiononly the exception chain and simple types are included in the serialized instance.the complete available object graph is serialized.Class exceptions are turned off. -
Method Summary
Modifier and TypeMethodDescriptionstatic AbapClassException.Mode
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.
-
Enum Constant Details
-
OFF
Class exceptions are turned off. -
FULL
the complete available object graph is serialized. -
EXCEPTION_CHAIN
only the exception chain and simple types are included in the serialized instance.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-