/****************************************************************************** * Copyright (c) 2004 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 ****************************************************************************/ package org.eclipse.gmf.runtime.notation; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.AbstractEnumerator; /** * * A representation of the literals of the enumeration 'Routing', * and utility methods for working with them. * * @see org.eclipse.gmf.runtime.notation.NotationPackage#getRouting() * @model * @generated */ /* * @canBeSeenBy %partners */ public final class Routing extends AbstractEnumerator { /** * The 'Manual' literal value. * * * @see #MANUAL_LITERAL * @model name="Manual" * @generated * @ordered */ public static final int MANUAL = 0; /** * The 'Rectilinear' literal value. * * * @see #RECTILINEAR_LITERAL * @model name="Rectilinear" * @generated * @ordered */ public static final int RECTILINEAR = 1; /** * The 'Tree' literal value. * * * @see #TREE_LITERAL * @model name="Tree" * @generated * @ordered */ public static final int TREE = 2; /** * The 'Manual' literal object. * * * @see #MANUAL * @generated * @ordered */ public static final Routing MANUAL_LITERAL = new Routing (MANUAL, "Manual"); //$NON-NLS-1$ /** * The 'Rectilinear' literal object. * * * @see #RECTILINEAR * @generated * @ordered */ public static final Routing RECTILINEAR_LITERAL = new Routing (RECTILINEAR, "Rectilinear"); //$NON-NLS-1$ /** * The 'Tree' literal object. * * * @see #TREE * @generated * @ordered */ public static final Routing TREE_LITERAL = new Routing (TREE, "Tree"); //$NON-NLS-1$ /** * An array of all the 'Routing' enumerators. * * * @generated */ private static final Routing [] VALUES_ARRAY = new Routing [] {MANUAL_LITERAL, RECTILINEAR_LITERAL, TREE_LITERAL,}; /** * A public read-only list of all the 'Routing' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList (Arrays.asList (VALUES_ARRAY)); /** * Returns the 'Routing' literal with the specified name. * * * @generated */ public static Routing get (String name) { for (int i = 0; i < VALUES_ARRAY.length; ++ i) { Routing result = VALUES_ARRAY [i]; if (result.toString ().equals (name)) { return result; } } return null; } /** * Returns the 'Routing' literal with the specified value. * * * @generated */ public static Routing get (int value) { switch (value) { case MANUAL : return MANUAL_LITERAL; case RECTILINEAR : return RECTILINEAR_LITERAL; case TREE : return TREE_LITERAL; } return null; } /** * Only this class can construct instances. * * * @generated */ private Routing (int value, String name) { super (value, name); } } //Routing