public static enum UUIDManager.FetcherMode extends Enum<UUIDManager.FetcherMode>
UUIDManager
resolves UUIDs.Enum Constant and Description |
---|
DISABLED
No UUID Fetcher is used.
|
INTERN
Uses the integrated uuid fetcher from spigot/bungeecord to resolved UUIDs.
Recommended for: None (should not be used as a default setting / maybe useful to avoid exceeding API rate limits.) |
MIXED
|
RESTFUL
Resolves the UUID using the REST-Services configured in the config.yml.
|
Modifier and Type | Method and Description |
---|---|
static UUIDManager.FetcherMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UUIDManager.FetcherMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UUIDManager.FetcherMode DISABLED
public static final UUIDManager.FetcherMode INTERN
public static final UUIDManager.FetcherMode MIXED
public static final UUIDManager.FetcherMode RESTFUL
public static UUIDManager.FetcherMode[] values()
for (UUIDManager.FetcherMode c : UUIDManager.FetcherMode.values()) System.out.println(c);
public static UUIDManager.FetcherMode 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 © 2020. All rights reserved.