public static enum Enums.CompoundType extends Enum<Enums.CompoundType>
| 枚举常量和说明 |
|---|
doubleLines |
singleLine |
thickThin |
thinThick |
threeLines |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getShotName() |
static Enums.CompoundType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static Enums.CompoundType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Enums.CompoundType doubleLines
public static final Enums.CompoundType singleLine
public static final Enums.CompoundType thickThin
public static final Enums.CompoundType thinThick
public static final Enums.CompoundType threeLines
public final String shotName
public static Enums.CompoundType[] values()
for (Enums.CompoundType c : Enums.CompoundType.values()) System.out.println(c);
public static Enums.CompoundType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getShotName()
Copyright © 2024. All rights reserved.