public static enum RemoteServerConfiguration.Permission extends Enum<RemoteServerConfiguration.Permission>
Enum Constant and Description |
---|
allowed
The XMPP entity is allowed to connect to the server.
|
blocked
The XMPP entity is NOT allowed to connect to the server.
|
Modifier and Type | Method and Description |
---|---|
static RemoteServerConfiguration.Permission |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteServerConfiguration.Permission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteServerConfiguration.Permission allowed
public static final RemoteServerConfiguration.Permission blocked
public static RemoteServerConfiguration.Permission[] values()
for (RemoteServerConfiguration.Permission c : RemoteServerConfiguration.Permission.values()) System.out.println(c);
public static RemoteServerConfiguration.Permission 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 nullCopyright © 2003–2019 Ignite Realtime. All rights reserved.