blob: a5f94dd1d48b5c08534ffbf1174802719cacb9c5 [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 -- Instances of this utility
* class hold symbolic constants.
*
*/
public abstract class DataTypes {
/**
* Symbolic constants describing the current type of data we are processing.
*
*/
/**
* Data at admin 0 level
*/
public static final int LEVEL_0 = 0;
/**
* Data at admin 1 level
*/
public static final int LEVEL_1 = 1;
/**
* Data at admin 2 level
*/
public static final int LEVEL_2 = 2;
}