public enum TriggerParamType extends Enum<TriggerParamType>
| Enum Constant and Description | 
|---|
ALLIANCE
A drop down list of diplomacy settings. 
 | 
AREA
A "select area" style button. 
 | 
BOOL
A button that can be switched ON or OFF. 
 | 
CAMERAINFO
A set of "Set Cut" style buttons. 
 | 
CAMTRACK
A drop down list of camera tracks. 
 | 
EVENT
A drop down list of triggers. 
 | 
FLOAT
An input box for floats. 
 | 
GODPOWER
A drop down list of god powers. 
 | 
GROUP
Army selection tools. 
 | 
KBSTAT
A drop down list of statistics. 
 | 
LONG
An input box for integers. 
 | 
OPERATOR
A drop down list of operators. 
 | 
PLAYER
A drop down list of player numbers. 
 | 
PROTOUNIT
A drop down list of different unit types. 
 | 
PUFIELD
A drop down list of modifiable unit fields. 
 | 
RESOURCE
A drop down list of resources. 
 | 
SOUND
Select sound style tools. 
 | 
STRING
An input box for strings. 
 | 
STRINGID
Seems to be the same as string, but it may have internal differences. 
 | 
TECH
A drop down list of technologies. 
 | 
TECHSTATUS
A drop down list of possible technology statuses. 
 | 
UICATEGORY
A drop down list of UI categories. 
 | 
UNIT
A "select unit" style button that returns the name of the selected unit. 
 | 
UNITSTANCE
A drop down list of unit stances. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static TriggerParamType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static TriggerParamType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final TriggerParamType LONG
-1public static final TriggerParamType FLOAT
-1.0public static final TriggerParamType STRING
defaultpublic static final TriggerParamType STRINGID
defaultpublic static final TriggerParamType BOOL
true or false.public static final TriggerParamType UNIT
5public static final TriggerParamType GROUP
1,11 (player 1, army 11)public static final TriggerParamType AREA
0, 0, 0public static final TriggerParamType SOUND
music_file","1public static final TriggerParamType CAMERAINFO
public static final TriggerParamType CAMTRACK
My_Camera_Trackpublic static final TriggerParamType OPERATOR
public static final TriggerParamType PLAYER
1public static final TriggerParamType TECH
123public static final TriggerParamType PROTOUNIT
Villager Greekpublic static final TriggerParamType ALLIANCE
Ally, Neutral or Enemy.public static final TriggerParamType KBSTAT
0public static final TriggerParamType GODPOWER
Reverse Timepublic static final TriggerParamType RESOURCE
food, wood, gold or favor.public static final TriggerParamType EVENT
Trigger0public static final TriggerParamType TECHSTATUS
1public static final TriggerParamType UNITSTANCE
Aggressive, Defensive or Passive.public static final TriggerParamType UICATEGORY
1public static final TriggerParamType PUFIELD
2public static TriggerParamType[] values()
for (TriggerParamType c : TriggerParamType.values()) System.out.println(c);
public static TriggerParamType 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 null