DeleteMode

public enum DeleteMode

The DeleteMode presents what should happen with objects when they are deleted. They can be deleted permanently DELETE or moved to the trash TRASH. This enum is related with the property org.motechproject.mds.util.Constants.Config.MDS_DELETE_MODE.

The UNKNOWN value should not be used in code as appropriate value. It was added to ensure that the fromString(String) method will not return null value.

Enum Constants

DELETE

public static final DeleteMode DELETE

TRASH

public static final DeleteMode TRASH

UNKNOWN

public static final DeleteMode UNKNOWN