public enum Role extends Enum<Role>
| Enum Constant and Description |
|---|
MODERATOR
The moderator role.
|
NONE
No role.
|
PARTICIPANT
The participant role.
|
VISITOR
The visitor role.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isHigherThan(Role role)
Compares two roles and returns true, if this role is higher than the other
with regards to their privileges in a multi-user chat.
|
static Role |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Role[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Role MODERATOR
public static final Role PARTICIPANT
public static final Role VISITOR
public static final Role NONE
public static Role[] values()
for (Role c : Role.values()) System.out.println(c);
public static Role 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 final boolean isHigherThan(Role role)
The highest role is moderator, followed by participant, followed by visitor, followed by none.
role - The other role.Copyright © 2014–2016 XMPP.rocks. All rights reserved.