public enum BossStyle extends Enum<BossStyle>
| Enum Constant and Description |
|---|
SEGMENTED_10 |
SEGMENTED_12 |
SEGMENTED_20 |
SEGMENTED_6 |
SOLID |
| Modifier and Type | Method and Description |
|---|---|
int |
getId() |
static BossStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BossStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BossStyle SOLID
public static final BossStyle SEGMENTED_6
public static final BossStyle SEGMENTED_10
public static final BossStyle SEGMENTED_12
public static final BossStyle SEGMENTED_20
public static BossStyle[] values()
for (BossStyle c : BossStyle.values()) System.out.println(c);
public static BossStyle 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 int getId()
Copyright © 2016–2021. All rights reserved.