DeleteMode ========== .. java:package:: org.motechproject.mds.config :noindex: .. java:type:: public enum DeleteMode The \ ``DeleteMode``\ presents what should happen with objects when they are deleted. They can be deleted permanently \ :java:ref:`DELETE`\ or moved to the trash \ :java:ref:`TRASH`\ . This enum is related with the property \ :java:ref:`org.motechproject.mds.util.Constants.Config.MDS_DELETE_MODE`\ . The \ :java:ref:`UNKNOWN`\ value should not be used in code as appropriate value. It was added to ensure that the \ :java:ref:`fromString(String)`\ method will not return {@value null} value. Enum Constants -------------- DELETE ^^^^^^ .. java:field:: public static final DeleteMode DELETE :outertype: DeleteMode TRASH ^^^^^ .. java:field:: public static final DeleteMode TRASH :outertype: DeleteMode UNKNOWN ^^^^^^^ .. java:field:: public static final DeleteMode UNKNOWN :outertype: DeleteMode