blob: 71d45ae9cd3ce3d02a3657d1d48574912c1d10a6 [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 Lex2data objects.
*
*/
public class Lex2Data {
/**
* Symbolic constants describing an Lex1Data Object.
*/
/**
* Total number of symbolic constants for lex 1 data objects.
*/
public static final int CONSTANTS = 6;
/**
* index of this element in lexicographically sorted sequence.
*/
public static final int INDEX = 0;
/**
* Alpha 2 code
*/
public static final int ALPHA2 = 1;
/**
* Alpha 3 code
*/
public static final int ALPHA3 = 2;
/**
* Country
*/
public static final int COUNTRY = 3;
/**
* Administration 1 name
*/
public static final int ADMIN1 = 4;
/**
* Admin 2 name
*/
public static final int ADMIN2 = 5;
}