/** * 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; /** * * A representation of the literals of the enumeration 'Difference Source', * and utility methods for working with them. * * * This will be used to represent the source of a detected diff. * * Note that differences detected during two-way comparisons will only be LEFT. * * @see org.eclipse.emf.compare.ComparePackage#getDifferenceSource() * @model * @generated */ public enum DifferenceSource implements Enumerator { /** * The 'LEFT' literal object. * * * @see #LEFT_VALUE * @generated * @ordered */ LEFT(0, "LEFT", "LEFT"), //$NON-NLS-1$ //$NON-NLS-2$ /** * The 'RIGHT' literal object. * * * @see #RIGHT_VALUE * @generated * @ordered */ RIGHT(1, "RIGHT", "RIGHT"); //$NON-NLS-1$ //$NON-NLS-2$ /** * * * @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 'LEFT' literal value. * * * * 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. * * @see #LEFT * @model * @generated * @ordered */ public static final int LEFT_VALUE = 0; /** * The 'RIGHT' literal value. * * * * Will be used if the difference has been detected between the right element and its origin. * * @see #RIGHT * @model * @generated * @ordered */ public static final int RIGHT_VALUE = 1; /** * An array of all the 'Difference Source' enumerators. * * * @generated */ private static final DifferenceSource[] VALUES_ARRAY = new DifferenceSource[] {LEFT, RIGHT, }; /** * A public read-only list of all the 'Difference Source' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays .asList(VALUES_ARRAY)); /** * Returns the 'Difference Source' literal with the specified literal value. * * * @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 'Difference Source' literal with the specified name. * * * @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 'Difference Source' literal with the specified integer value. * * * @generated */ public static DifferenceSource get(int value) { switch (value) { case LEFT_VALUE: return LEFT; case RIGHT_VALUE: return RIGHT; } return null; } /** * * * @generated */ private final int value; /** * * * @generated */ private final String name; /** * * * @generated */ private final String literal; /** * Only this class can construct instances. * * * @generated */ private DifferenceSource(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * * * @generated */ public int getValue() { return value; } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * * * @generated */ @Override public String toString() { return literal; } } //DifferenceSource