public static enum MatsInitiator.KeepTrace extends java.lang.Enum<MatsInitiator.KeepTrace>
| Enum Constant and Description | 
|---|
| COMPACTNulls out Data for other than current call while still keeping the meta-info for the call history, and
 condenses State to a pure stack. | 
| FULLDefault: Keep all history for request and reply DTOs, and all history for state STOs. | 
| MINIMALOnly keep the current call, and condenses State to a pure stack. | 
| Modifier and Type | Method and Description | 
|---|---|
| static MatsInitiator.KeepTrace | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static MatsInitiator.KeepTrace[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MatsInitiator.KeepTrace FULL
public static final MatsInitiator.KeepTrace COMPACT
public static final MatsInitiator.KeepTrace MINIMAL
public static MatsInitiator.KeepTrace[] values()
for (MatsInitiator.KeepTrace c : MatsInitiator.KeepTrace.values()) System.out.println(c);
public static MatsInitiator.KeepTrace 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 null