public enum VCDiffFormatExtension extends Enum<VCDiffFormatExtension>
| Enum Constant and Description |
|---|
GOOGLE_CHECKSUM
If this flag is specified, then an Adler32 checksum
of the target window data is included in the delta window.
|
GOOGLE_INTERLEAVED
If this flag is specified, then the encoder writes each delta file
window by interleaving instructions and sizes with their corresponding
addresses and data, rather than placing these elements
into three separate sections.
|
GOOGLE_JSON
Deprecated.
|
| Modifier and Type | Field and Description |
|---|---|
int |
flag |
| Modifier and Type | Method and Description |
|---|---|
static VCDiffFormatExtension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VCDiffFormatExtension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VCDiffFormatExtension GOOGLE_INTERLEAVED
public static final VCDiffFormatExtension GOOGLE_CHECKSUM
@Deprecated public static final VCDiffFormatExtension GOOGLE_JSON
public static VCDiffFormatExtension[] values()
for (VCDiffFormatExtension c : VCDiffFormatExtension.values()) System.out.println(c);
public static VCDiffFormatExtension 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 © 2018. All rights reserved.