public static enum Mod.Mod_Flags extends java.lang.Enum<Mod.Mod_Flags>
Enum Constant and Description |
---|
MASTER
Master flag determines whether a mod is labeled as a master plugin
and receives a ".esm" suffix.
|
STRING_TABLED
String Tabled flag determines whether names and descriptions are
stored inside the mod itself, or in external STRINGS files.
|
Modifier and Type | Method and Description |
---|---|
static Mod.Mod_Flags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Mod.Mod_Flags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mod.Mod_Flags MASTER
public static final Mod.Mod_Flags STRING_TABLED
SPGlobal
public static Mod.Mod_Flags[] values()
for (Mod.Mod_Flags c : Mod.Mod_Flags.values()) System.out.println(c);
public static Mod.Mod_Flags 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