Package org.jivesoftware.openfire.muc
Enum Class Affiliation
- All Implemented Interfaces:
Serializable,Comparable<Affiliation>,Constable
A long-lived association or connection with a room. Affiliation is distinct from role. An affiliation lasts
across a user's visits to a room.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionintgetValue()Returns the value for the affiliation.static AffiliationvalueOf(int value) Returns the affiliation associated with the specified value.static AffiliationReturns the enum constant of this class with the specified name.static Affiliation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
owner
Owner of the room. -
admin
Administrator of the room. -
member
A user who is on the "whitelist" for a members-only room or who is registered with an open room. -
outcast
A user who has been banned from a room. -
none
A user who doesn't have an affiliation. This kind of users can register with members-only rooms and may enter an open room.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue()Returns the value for the affiliation.- Returns:
- the value.
-
valueOf
Returns the affiliation associated with the specified value.- Parameters:
value- the value.- Returns:
- the associated affiliation.
-