1 /** 2 * <copyright> 3 * 4 * Copyright (c) 2002-2004 IBM Corporation and others. 5 * All rights reserved. This program and the accompanying materials 6 * are made available under the terms of the Eclipse Public License v1.0 7 * which accompanies this distribution, and is available at 8 * http://www.eclipse.org/legal/epl-v10.html 9 * 10 * Contributors: 11 * IBM - Initial API and implementation 12 * 13 * </copyright> 14 * 15 * $Id: Enumerator.java,v 1.2 2005/06/08 06:19:08 nickb Exp $ 16 */ 17 package org.eclipse.emf.common.util; 18 19 20 /** 21 * An interface implemented by the enumerators of a type-safe enum. 22 */ 23 public interface Enumerator 24 { 25 /** 26 * Returns the name of the enumerator. 27 * @return the name. 28 */ 29 String getName(); 30 31 /** 32 * Returns the <code>int</code>value of the enumerator. 33 * @return the value. 34 */ 35 int getValue(); 36 } 37