public enum ResourcePackPreference extends Enum<ResourcePackPreference>
| Enum Constant and Description |
|---|
AUTOMATIC |
DEFAULT |
DISABLED |
DOWNLOADED |
MANUAL |
| Modifier and Type | Method and Description |
|---|---|
static ResourcePackPreference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourcePackPreference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourcePackPreference DEFAULT
public static final ResourcePackPreference AUTOMATIC
public static final ResourcePackPreference MANUAL
public static final ResourcePackPreference DISABLED
public static final ResourcePackPreference DOWNLOADED
public static ResourcePackPreference[] values()
for (ResourcePackPreference c : ResourcePackPreference.values()) System.out.println(c);
public static ResourcePackPreference 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 © 2021 elMakers. All rights reserved.