public enum TarType extends Enum<TarType>
| 枚举常量和说明 |
|---|
GZIP
格式为
.gzip的压缩包账单 |
public static final TarType GZIP
.gzip的压缩包账单public static TarType[] values()
for (TarType c : TarType.values()) System.out.println(c);
public static TarType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.