Package net.sf.freecol.common.model
Enum Constants.IndianDemandAction
- java.lang.Object
-
- java.lang.Enum<Constants.IndianDemandAction>
-
- net.sf.freecol.common.model.Constants.IndianDemandAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Constants.IndianDemandAction>
- Enclosing interface:
- Constants
public static enum Constants.IndianDemandAction extends java.lang.Enum<Constants.IndianDemandAction>
Actions surrounding native demands at colonies.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INDIAN_DEMAND_ACCEPT
INDIAN_DEMAND_DONE
INDIAN_DEMAND_REJECT
-
Constructor Summary
Constructors Modifier Constructor Description private
IndianDemandAction()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Constants.IndianDemandAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Constants.IndianDemandAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INDIAN_DEMAND_ACCEPT
public static final Constants.IndianDemandAction INDIAN_DEMAND_ACCEPT
-
INDIAN_DEMAND_REJECT
public static final Constants.IndianDemandAction INDIAN_DEMAND_REJECT
-
INDIAN_DEMAND_DONE
public static final Constants.IndianDemandAction INDIAN_DEMAND_DONE
-
-
Method Detail
-
values
public static Constants.IndianDemandAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Constants.IndianDemandAction c : Constants.IndianDemandAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.IndianDemandAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-