|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<DumpFileManager.CompressionMethod> net.sourceforge.jdbdump.dump.DumpFileManager.CompressionMethod
public static enum DumpFileManager.CompressionMethod
Enum Constant Summary | |
---|---|
GZIP
(De)compress the backup file using Gzip method. |
|
NONE
Do not (de)compress the backup file at all. |
|
ZIP
(De)compress the backup file using Zip method. |
Method Summary | |
---|---|
static DumpFileManager.CompressionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DumpFileManager.CompressionMethod[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DumpFileManager.CompressionMethod ZIP
public static final DumpFileManager.CompressionMethod GZIP
public static final DumpFileManager.CompressionMethod NONE
Method Detail |
---|
public static final DumpFileManager.CompressionMethod[] values()
for(DumpFileManager.CompressionMethod c : DumpFileManager.CompressionMethod.values()) System.out.println(c);
public static DumpFileManager.CompressionMethod 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 name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |