public enum SourceRconAuthReason extends Enum<SourceRconAuthReason>
| Enum Constant and Description |
|---|
CONNECTION_DROPPED
Connection has been dropped by the remote server
|
INVALID_CREDENTIALS
Credentials supplied is invalid
|
INVALIDATED
Credentials have been invalidated for the address.
|
NOT_AUTHENTICATED
An attempt to execute a command request on an address that has not yet been authenticated by the server.
|
| Modifier and Type | Method and Description |
|---|---|
static SourceRconAuthReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceRconAuthReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceRconAuthReason INVALIDATED
public static final SourceRconAuthReason INVALID_CREDENTIALS
public static final SourceRconAuthReason CONNECTION_DROPPED
public static final SourceRconAuthReason NOT_AUTHENTICATED
public static SourceRconAuthReason[] values()
for (SourceRconAuthReason c : SourceRconAuthReason.values()) System.out.println(c);
public static SourceRconAuthReason 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 © 2016–2024. All rights reserved.