java.io.Serializable, java.lang.Comparable<BuiltInGzipDecompressor.GzipStateLabel>public static enum BuiltInGzipDecompressor.GzipStateLabel extends java.lang.Enum<BuiltInGzipDecompressor.GzipStateLabel>
| Enum Constant | Description |
|---|---|
DEFLATE_STREAM |
Immediately prior to or within the main compressed (deflate) data stream.
|
ENDED |
Immediately after end() has been called.
|
FINISHED |
Immediately after the trailer (and potentially prior to the next gzip
member/substream header), without reset() having been called.
|
HEADER_BASIC |
Immediately prior to or (strictly) within the 10-byte basic gzip header.
|
HEADER_COMMENT |
Immediately prior to or within the optional comment field.
|
HEADER_CRC |
Immediately prior to or within the optional 2-byte header CRC value.
|
HEADER_EXTRA_FIELD |
Immediately prior to or within the optional "extra field."
|
HEADER_FILENAME |
Immediately prior to or within the optional filename field.
|
INFLATE_STREAM |
Immediately prior to or within the main uncompressed (inflate) data stream.
|
TRAILER_CRC |
Immediately prior to or (strictly) within the 4-byte uncompressed CRC.
|
TRAILER_SIZE |
Immediately prior to or (strictly) within the 4-byte uncompressed size.
|
| Modifier and Type | Method | Description |
|---|---|---|
static BuiltInGzipDecompressor.GzipStateLabel |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static BuiltInGzipDecompressor.GzipStateLabel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInGzipDecompressor.GzipStateLabel HEADER_BASIC
public static final BuiltInGzipDecompressor.GzipStateLabel HEADER_EXTRA_FIELD
public static final BuiltInGzipDecompressor.GzipStateLabel HEADER_FILENAME
public static final BuiltInGzipDecompressor.GzipStateLabel HEADER_COMMENT
public static final BuiltInGzipDecompressor.GzipStateLabel HEADER_CRC
public static final BuiltInGzipDecompressor.GzipStateLabel DEFLATE_STREAM
public static final BuiltInGzipDecompressor.GzipStateLabel INFLATE_STREAM
public static final BuiltInGzipDecompressor.GzipStateLabel TRAILER_CRC
public static final BuiltInGzipDecompressor.GzipStateLabel TRAILER_SIZE
public static final BuiltInGzipDecompressor.GzipStateLabel FINISHED
public static final BuiltInGzipDecompressor.GzipStateLabel ENDED
public static BuiltInGzipDecompressor.GzipStateLabel[] values()
for (BuiltInGzipDecompressor.GzipStateLabel c : BuiltInGzipDecompressor.GzipStateLabel.values()) System.out.println(c);
public static BuiltInGzipDecompressor.GzipStateLabel 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 namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.