protected static enum GZipDecoder.DecodeStatus extends Enum<GZipDecoder.DecodeStatus>
Enum Constant and Description |
---|
DONE |
FCOMMENT |
FEXTRA1 |
FEXTRA2 |
FHCRC |
FNAME |
INITIAL |
PAYLOAD |
TRAILER |
Modifier and Type | Method and Description |
---|---|
static GZipDecoder.DecodeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GZipDecoder.DecodeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GZipDecoder.DecodeStatus INITIAL
public static final GZipDecoder.DecodeStatus FEXTRA1
public static final GZipDecoder.DecodeStatus FEXTRA2
public static final GZipDecoder.DecodeStatus FNAME
public static final GZipDecoder.DecodeStatus FCOMMENT
public static final GZipDecoder.DecodeStatus FHCRC
public static final GZipDecoder.DecodeStatus PAYLOAD
public static final GZipDecoder.DecodeStatus TRAILER
public static final GZipDecoder.DecodeStatus DONE
public static GZipDecoder.DecodeStatus[] values()
for (GZipDecoder.DecodeStatus c : GZipDecoder.DecodeStatus.values()) System.out.println(c);
public static GZipDecoder.DecodeStatus 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 © 2014 Oracle Corporation. All rights reserved.