net.sf.freecol.common.model
Enum Colony.NoBuildReason

java.lang.Object
  extended by java.lang.Enum<Colony.NoBuildReason>
      extended by 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>


Enum Constant Summary
MISSING_ABILITY
           
MISSING_BUILD_ABILITY
           
NONE
           
NOT_BUILDABLE
           
POPULATION_TOO_SMALL
           
WRONG_UPGRADE
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final Colony.NoBuildReason NONE

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
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 name
java.lang.NullPointerException - if the argument is null