public enum ArmorType extends Enum<ArmorType> implements EnumType
| Enum Constant and Description |
|---|
ARMOR_AP_REQUEST |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ArmorType |
fromValue(Integer value) |
String |
getName() |
int |
getValue() |
static ArmorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArmorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArmorType NONE
public static final ArmorType ARMOR_AP_REQUEST
public static ArmorType[] values()
for (ArmorType c : ArmorType.values()) System.out.println(c);
public static ArmorType 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–2016 The Apache Software Foundation. All rights reserved.