public enum ZipVersionMadeBy extends Enum<ZipVersionMadeBy>
Enum Constant and Description |
---|
ACORN_RISC |
ALT_MVS |
AMIGA |
ATARI_ST |
ATHEOS |
BEOS |
CPM |
MACINTOSH |
MSDOS |
OPENVMS |
OS2_HPFS |
OSX |
SMS_QDOS |
TANDEM |
THEOS |
UNIX |
VFAT |
VMCMS |
WINDOWS_NTFS |
Z_SYSTEM |
Modifier and Type | Method and Description |
---|---|
UnsignedByte |
getCode()
Get the code associated with this Zip version made by enum constant.
|
String |
toString() |
static ZipVersionMadeBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZipVersionMadeBy |
valueOf(UnsignedByte code)
Get the Zip version made by enum constant that corresponds to the code.
|
static ZipVersionMadeBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZipVersionMadeBy MSDOS
public static final ZipVersionMadeBy AMIGA
public static final ZipVersionMadeBy OPENVMS
public static final ZipVersionMadeBy UNIX
public static final ZipVersionMadeBy VMCMS
public static final ZipVersionMadeBy ATARI_ST
public static final ZipVersionMadeBy OS2_HPFS
public static final ZipVersionMadeBy MACINTOSH
public static final ZipVersionMadeBy Z_SYSTEM
public static final ZipVersionMadeBy CPM
public static final ZipVersionMadeBy WINDOWS_NTFS
public static final ZipVersionMadeBy SMS_QDOS
public static final ZipVersionMadeBy ACORN_RISC
public static final ZipVersionMadeBy VFAT
public static final ZipVersionMadeBy ALT_MVS
public static final ZipVersionMadeBy BEOS
public static final ZipVersionMadeBy TANDEM
public static final ZipVersionMadeBy THEOS
public static final ZipVersionMadeBy OSX
public static final ZipVersionMadeBy ATHEOS
public static ZipVersionMadeBy[] values()
for (ZipVersionMadeBy c : ZipVersionMadeBy.values()) System.out.println(c);
public static ZipVersionMadeBy 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 UnsignedByte getCode()
public static ZipVersionMadeBy valueOf(UnsignedByte code) throws IllegalArgumentException
code
- The version made by code.IllegalArgumentException
- If there is no Zip version made by enum
constant associated with the supplied code.public String toString()
toString
in class Enum<ZipVersionMadeBy>