View Javadoc
1   package com.atlassian.dbexporter;
2   
3   /**
4    * Determine how the database should be cleaned up before an import.
5    */
6   public enum CleanupMode {
7       NONE, // no clean up necessary
8       CLEAN, // clean up the database, drop tables etc. before the import
9   }