blob: e12ead1c0e587376cf5c316173084f0fec899294 [file] [log] [blame]
package org.eclipse.stem.utility.generators;
/*******************************************************************************
* Copyright (c) 2009 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
*******************************************************************************/
/**
*
* Relevant keys to the European dataset.
*
*/
public abstract class EuropeDataFormattingHeader {
/**
* Numeric ID
*/
public static final int NUMID = 0;
/**
* Name ID
*/
public static final int STRID = 1;
/**
* Total Area
*/
public static final int AREA = 2;
/**
* Population value 1
*/
public static final int POP1 = 3;
/**
* Population value 2
*/
public static final int POP2 = 4;
/**
* Population value 3
*/
public static final int POP3 = 5;
/**
* Population value 4
*/
public static final int POP4 = 6;
/**
* Alternative ID
*/
public static final int TEMPID = 7;
}