blob: 8bcf4d659b80176b6f38fc74b38ec9e8e0cc67a3 [file] [log] [blame]
/**
* 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 Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The differences detected through EMF Compare can be of 4 general types.
* <ul>
* <li>ADD represent addition of model element or feature values,</li>
* <li>DELETE represent suppression of model element or feature values,</li>
* <li>CHANGE represent the modification of a feature value,</li>
* <li>MOVE will be used for difference on the containment feature of a model element, or differences on the order of a feature's values.</li>
* </ul>
* <!-- end-model-doc -->
* @see org.eclipse.emf.compare.ComparePackage#getDifferenceKind()
* @model
* @generated
*/
public enum DifferenceKind implements Enumerator {
/**
* The '<em><b>ADD</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ADD_VALUE
* @generated
* @ordered
*/
ADD(0, "ADD", "ADD"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>DELETE</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DELETE_VALUE
* @generated
* @ordered
*/
DELETE(1, "DELETE", "DELETE"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>CHANGE</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CHANGE_VALUE
* @generated
* @ordered
*/
CHANGE(2, "CHANGE", "CHANGE"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>MOVE</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MOVE_VALUE
* @generated
* @ordered
*/
MOVE(3, "MOVE", "MOVE"); //$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>ADD</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Represents the addition of model elements or feature values.
* <!-- end-model-doc -->
* @see #ADD
* @model
* @generated
* @ordered
*/
public static final int ADD_VALUE = 0;
/**
* The '<em><b>DELETE</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Represents the suppression of model elements or feature values.
* <!-- end-model-doc -->
* @see #DELETE
* @model
* @generated
* @ordered
*/
public static final int DELETE_VALUE = 1;
/**
* The '<em><b>CHANGE</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Represents the modification of a feature value.
* <!-- end-model-doc -->
* @see #CHANGE
* @model
* @generated
* @ordered
*/
public static final int CHANGE_VALUE = 2;
/**
* The '<em><b>MOVE</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Describes a difference on the containment feature of a model element, or differences on the order of a feature's values.
* <!-- end-model-doc -->
* @see #MOVE
* @model
* @generated
* @ordered
*/
public static final int MOVE_VALUE = 3;
/**
* An array of all the '<em><b>Difference Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final DifferenceKind[] VALUES_ARRAY = new DifferenceKind[] {ADD, DELETE, CHANGE, MOVE, };
/**
* A public read-only list of all the '<em><b>Difference Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<DifferenceKind> VALUES = Collections.unmodifiableList(Arrays
.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Difference Kind</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static DifferenceKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
DifferenceKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Difference Kind</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static DifferenceKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
DifferenceKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Difference Kind</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static DifferenceKind get(int value) {
switch (value) {
case ADD_VALUE:
return ADD;
case DELETE_VALUE:
return DELETE;
case CHANGE_VALUE:
return CHANGE;
case MOVE_VALUE:
return MOVE;
}
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 DifferenceKind(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;
}
} //DifferenceKind