Serializable
, Comparable<BanList.Type>
public static enum BanList.Type extends Enum<BanList.Type>
BanList
may track.Enum Constant | Description |
---|---|
IP |
Banned player IP addresses
|
NAME |
Banned player names
|
Modifier and Type | Method | Description |
---|---|---|
static BanList.Type |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static BanList.Type[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BanList.Type NAME
public static final BanList.Type IP
public static BanList.Type[] values()
for (BanList.Type c : BanList.Type.values()) System.out.println(c);
public static BanList.Type 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 © 2019. All rights reserved.