public enum DailyDumpMode extends Enum<DailyDumpMode>
| Enum Constant and Description |
|---|
Download
Downloads the gzip file from the server.
|
DownloadAndRead
Downloads the gzip file from the server, then reads it from the file system.
|
ReadLocal
Reads the gzip file from the file system.
|
ReadRemote
Reads the gzip file directly from the server.
|
| Modifier and Type | Method and Description |
|---|---|
static DailyDumpMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DailyDumpMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DailyDumpMode ReadLocal
public static final DailyDumpMode ReadRemote
public static final DailyDumpMode Download
public static final DailyDumpMode DownloadAndRead
public static DailyDumpMode[] values()
for (DailyDumpMode c : DailyDumpMode.values()) System.out.println(c);
public static DailyDumpMode 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 © 2016. All rights reserved.