ch.sahits.game.openpatrician.model.personal
Enum EMilitantCareer

java.lang.Object
  extended by java.lang.Enum<EMilitantCareer>
      extended by ch.sahits.game.openpatrician.model.personal.EMilitantCareer
All Implemented Interfaces:
ICareer, IMilitantCareer, Serializable, Comparable<EMilitantCareer>

public enum EMilitantCareer
extends Enum<EMilitantCareer>
implements IMilitantCareer

Enumeration indicating the career level of a militant career.

Author:
Andi Hotz, (c) Sahits GmbH, 2012 Created on Jul 23, 2012

Enum Constant Summary
BOISTEROUS
           
BOLD
           
BRAVE
           
COURAGEOUS
           
DANGEROUS
           
MILITANT
           
RUTHLESS
           
 
Method Summary
static EMilitantCareer valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EMilitantCareer[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BOISTEROUS

public static final EMilitantCareer BOISTEROUS

BRAVE

public static final EMilitantCareer BRAVE

BOLD

public static final EMilitantCareer BOLD

COURAGEOUS

public static final EMilitantCareer COURAGEOUS

MILITANT

public static final EMilitantCareer MILITANT

RUTHLESS

public static final EMilitantCareer RUTHLESS

DANGEROUS

public static final EMilitantCareer DANGEROUS
Method Detail

values

public static EMilitantCareer[] 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 (EMilitantCareer c : EMilitantCareer.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EMilitantCareer valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011-2012 Sahits GmbH. All Rights Reserved.