public enum EndPointType extends java.lang.Enum<EndPointType>
Modifier and Type | Method | Description |
---|---|---|
static EndPointType |
getFromName(java.lang.String name) |
|
java.lang.String |
getName() |
|
static EndPointType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static EndPointType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndPointType DISCORD
public static final EndPointType IRC
public static final EndPointType UNKNOWN
public static EndPointType[] values()
for (EndPointType c : EndPointType.values()) System.out.println(c);
public static EndPointType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getName()
public static EndPointType getFromName(java.lang.String name)