public enum MUCLightAffiliation extends Enum<MUCLightAffiliation>
Modifier and Type | Method and Description |
---|---|
static MUCLightAffiliation |
fromString(String string) |
static MUCLightAffiliation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MUCLightAffiliation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MUCLightAffiliation owner
public static final MUCLightAffiliation member
public static final MUCLightAffiliation none
public static MUCLightAffiliation[] values()
for (MUCLightAffiliation c : MUCLightAffiliation.values()) System.out.println(c);
public static MUCLightAffiliation 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 static MUCLightAffiliation fromString(String string)