Package org.jivesoftware.smackx.muclight
Enum MUCLightAffiliation
- java.lang.Object
-
- java.lang.Enum<MUCLightAffiliation>
-
- org.jivesoftware.smackx.muclight.MUCLightAffiliation
-
- All Implemented Interfaces:
Serializable
,Comparable<MUCLightAffiliation>
public enum MUCLightAffiliation extends Enum<MUCLightAffiliation>
MUCLight affiliations enum.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
owner
public static final MUCLightAffiliation owner
-
member
public static final MUCLightAffiliation member
-
none
public static final MUCLightAffiliation none
-
-
Method Detail
-
values
public static MUCLightAffiliation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MUCLightAffiliation c : MUCLightAffiliation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MUCLightAffiliation valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
public static MUCLightAffiliation fromString(String string)
-
-