Package net.sf.freecol.common.model
Enum Colony.NoBuildReason
- java.lang.Object
-
- java.lang.Enum<Colony.NoBuildReason>
-
- net.sf.freecol.common.model.Colony.NoBuildReason
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Colony.NoBuildReason>
- Enclosing class:
- Colony
public static enum Colony.NoBuildReason extends java.lang.Enum<Colony.NoBuildReason>
Reasons for not building a buildable.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COASTAL
LIMIT_EXCEEDED
MISSING_ABILITY
MISSING_BUILD_ABILITY
NONE
NOT_BUILDABLE
NOT_BUILDING
POPULATION_TOO_SMALL
WRONG_UPGRADE
-
Constructor Summary
Constructors Modifier Constructor Description private
NoBuildReason()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Colony.NoBuildReason
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Colony.NoBuildReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Colony.NoBuildReason NONE
-
NOT_BUILDING
public static final Colony.NoBuildReason NOT_BUILDING
-
NOT_BUILDABLE
public static final Colony.NoBuildReason NOT_BUILDABLE
-
POPULATION_TOO_SMALL
public static final Colony.NoBuildReason POPULATION_TOO_SMALL
-
MISSING_BUILD_ABILITY
public static final Colony.NoBuildReason MISSING_BUILD_ABILITY
-
MISSING_ABILITY
public static final Colony.NoBuildReason MISSING_ABILITY
-
WRONG_UPGRADE
public static final Colony.NoBuildReason WRONG_UPGRADE
-
COASTAL
public static final Colony.NoBuildReason COASTAL
-
LIMIT_EXCEEDED
public static final Colony.NoBuildReason LIMIT_EXCEEDED
-
-
Method Detail
-
values
public static Colony.NoBuildReason[] 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 (Colony.NoBuildReason c : Colony.NoBuildReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Colony.NoBuildReason 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
-
-