FileDocCategorySizeDatePackage
Country2.javaAPI DocExample1908Sun Dec 14 22:47:36 GMT 2003oreilly.hcj.constants

Country2

public class Country2 extends Object
Holds country constants.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.3 $

Fields Summary
public static final Country2
CANADA
Contry constant for Canada.
public static final Country2
CROATIA
Contry constant for Croatia.
public static final Country2
GERMANY
Contry constant for Germany.
public static final Country2
ITALY
Contry constant for Italy.
public static final Country2
MEXICO
Contry constant for Mexico.
public static final Country2
UK
Contry constant for the UK.
public static final Country2
USA
Contry constant for the USA.
public static final Country2
VENEZUELA
Contry constant for the Venezuela.
private final String
name
Holds the name of this country.
Constructors Summary
private Country2(String name)
Creates a new Country2.

param
name The name for the exception type.


	             	 
	    
		this.name = name;
	
Methods Summary
public java.lang.StringgetName()
Get the name of this country.

return
The name of the country.

		return this.name;