/** * Copyright (c) 2012 Obeo. * 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: * Obeo - initial API and implementation */ package org.eclipse.emf.compare; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * <!-- begin-user-doc --> * A representation of the literals of the enumeration '<em><b>Difference Source</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * <!-- begin-model-doc --> * This will be used to represent the source of a detected diff. * <ul> * <li>LEFT if the difference has been detected between the left element and its origin,</li> * <li>RIGHT if the difference has been detected between the right element and its origin.</li> * </ul> * <b>Note</b> that differences detected during two-way comparisons will only be LEFT. * <!-- end-model-doc --> * @see org.eclipse.emf.compare.ComparePackage#getDifferenceSource() * @model * @generated */ public enum DifferenceSource implements Enumerator { /** * The '<em><b>LEFT</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #LEFT_VALUE * @generated * @ordered */ LEFT(0, "LEFT", "LEFT"), //$NON-NLS-1$ //$NON-NLS-2$ /** * The '<em><b>RIGHT</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #RIGHT_VALUE * @generated * @ordered */ RIGHT(1, "RIGHT", "RIGHT"); //$NON-NLS-1$ //$NON-NLS-2$ /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final String copyright = "Copyright (c) 2012 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Obeo - initial API and implementation"; //$NON-NLS-1$ /** * The '<em><b>LEFT</b></em>' literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Will be used if the difference has been detected between the left element and its origin. Differences detected during two-way comparisons will always have this has their source. * <!-- end-model-doc --> * @see #LEFT * @model * @generated * @ordered */ public static final int LEFT_VALUE = 0; /** * The '<em><b>RIGHT</b></em>' literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * Will be used if the difference has been detected between the right element and its origin. * <!-- end-model-doc --> * @see #RIGHT * @model * @generated * @ordered */ public static final int RIGHT_VALUE = 1; /** * An array of all the '<em><b>Difference Source</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final DifferenceSource[] VALUES_ARRAY = new DifferenceSource[] {LEFT, RIGHT, }; /** * A public read-only list of all the '<em><b>Difference Source</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<DifferenceSource> VALUES = Collections.unmodifiableList(Arrays .asList(VALUES_ARRAY)); /** * Returns the '<em><b>Difference Source</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DifferenceSource get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { DifferenceSource result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Difference Source</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DifferenceSource getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { DifferenceSource result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Difference Source</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DifferenceSource get(int value) { switch (value) { case LEFT_VALUE: return LEFT; case RIGHT_VALUE: return RIGHT; } return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final int value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final String name; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final String literal; /** * Only this class can construct instances. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private DifferenceSource(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public int getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { return literal; } } //DifferenceSource