com.met.cptl
Enum Province

java.lang.Object
  extended by java.lang.Enum<Province>
      extended by com.met.cptl.Province
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Province>

public enum Province
extends java.lang.Enum<Province>


Enum Constant Summary
AB
           
BC
           
MB
           
NA
           
NB
           
NL
           
NR
           
NS
           
NT
           
NU
           
ON
           
PE
           
QC
           
SK
           
YT
           
 
Method Summary
static Province valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Province[] 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

AB

public static final Province AB

BC

public static final Province BC

MB

public static final Province MB

NB

public static final Province NB

NL

public static final Province NL

NS

public static final Province NS

NT

public static final Province NT

NU

public static final Province NU

ON

public static final Province ON

PE

public static final Province PE

QC

public static final Province QC

SK

public static final Province SK

YT

public static final Province YT

NR

public static final Province NR

NA

public static final Province NA
Method Detail

values

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

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

valueOf

public static Province 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