| Enum Constant and Description |
|---|
ASCENDING
Sort ascending, small to large.
|
CLIENT
Minecraft client, so that which a users runs on their gaming machine.
|
DESCENDING
Sort descending, large to small.
|
FABRIC
Indicates this operation concerns Fabric.
|
FABRIC_INSTALLER
Indicates this operation concerns Fabric Installer.
|
FORGE
Indicates this operation concerns Forge.
|
MINECRAFT
Indicates this operation concerns Minecraft.
|
RELEASE
Indicates that an object is a full release, meaning no snapshot, alpha, or beta.
|
SERVER
Minecraft server, usually run on a dedicated server.
|
SNAPSHOT
Indicates that an object is a pre-release, so either a snapshot (duh..), alpha, beta etc.
|
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
type |
| Modifier and Type | Method and Description |
|---|---|
static Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type RELEASE
public static final Type SNAPSHOT
public static final Type CLIENT
public static final Type SERVER
public static final Type ASCENDING
public static final Type DESCENDING
public static final Type MINECRAFT
public static final Type FORGE
public static final Type FABRIC
public static final Type FABRIC_INSTALLER
public static Type[] values()
for (Type c : Type.values()) System.out.println(c);
public static Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null