public enum ZipEntryCompression extends Enum<ZipEntryCompression>
列挙型定数と説明 |
---|
DEFLATED
Contents are compressed using the 'deflate' algorithm
|
STORED
Contents are not compressed
|
修飾子とタイプ | メソッドと説明 |
---|---|
static ZipEntryCompression |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static ZipEntryCompression[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final ZipEntryCompression STORED
public static final ZipEntryCompression DEFLATED
public static ZipEntryCompression[] values()
for(ZipEntryCompression c: ZipEntryCompression.values()) System.out.println(c);
public static ZipEntryCompression valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合