blob: de03ec43ea92991fff529968ed71dab485faca25 [file] [log] [blame]
package org.eclipse.stem.utility.generators;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* STEM II Data Migration/Generation Utilities : A holder for constants related
* to ISO3166-1
*
*/
public abstract class ISOData {
/**
* Symbolic constants describing an ISO3166-1 Object.
*/
/**
* Alpha 3 country code
*/
public static final int ALPHA3_CODE = 0;
/**
* Country name
*/
public static final int COUNTRY_NAME = 1;
/**
* Administration 1 name
*/
public static final int ADMIN1_NAME = 2;
/**
* Administration 2 name
*/
public static final int ADMIN2_NAME = 3;
}