public static enum ArchiveTool.VerifyOption extends Enum<ArchiveTool.VerifyOption>
| Enum Constant and Description |
|---|
APPLY_CHECKSUM
Perform checksum for each data frame within a segment file being verify.
|
VERIFY_ALL_SEGMENT_FILES
Enables verification for all segment files of a given recording.
|
| Modifier and Type | Method and Description |
|---|---|
static ArchiveTool.VerifyOption |
byFlag(String flag)
Lookup the
ArchiveTool.VerifyOption by string format of the command line flag. |
static ArchiveTool.VerifyOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveTool.VerifyOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveTool.VerifyOption VERIFY_ALL_SEGMENT_FILES
public static final ArchiveTool.VerifyOption APPLY_CHECKSUM
public static ArchiveTool.VerifyOption[] values()
for (ArchiveTool.VerifyOption c : ArchiveTool.VerifyOption.values()) System.out.println(c);
public static ArchiveTool.VerifyOption 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 nullpublic static ArchiveTool.VerifyOption byFlag(String flag)
ArchiveTool.VerifyOption by string format of the command line flag.flag - command line option.ArchiveTool.VerifyOption which matches the flag or null if not found.Copyright © 2014-2020 Real Logic Limited. All Rights Reserved.