public enum MissingPacketsPolicy extends Enum<MissingPacketsPolicy>
| Enum Constant and Description | 
|---|
IGNORE
ignore the missing packets and continue 
 | 
RECOVER
Cause a backspace to restart and do a full recovery 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MissingPacketsPolicy | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static MissingPacketsPolicy[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MissingPacketsPolicy RECOVER
public static final MissingPacketsPolicy IGNORE
public static MissingPacketsPolicy[] values()
for (MissingPacketsPolicy c : MissingPacketsPolicy.values()) System.out.println(c);
public static MissingPacketsPolicy 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 © GigaSpaces.