blob: 0652fa06ae2cc29b66a9b62b202ccac9b56cc714 [file] [log] [blame]
/**
* Copyright (c) 2017 CEA LIST.
*
* 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:
* Sébastien Gerard (CEA LIST) <sebastien.gerard@cea.fr> - Initial API and implementation
* Yupanqui Munoz Julho (CEA LIST) <yupanqui.munozjulho@cea.fr> - Initial API and implementation
*
*/
package org.eclipse.papyrus.requirements.sysml14.papyrusre.modellibrary.papyrusrestandardutils.verificationandvalidationconcerns;
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>VV Status Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.papyrus.requirements.sysml14.papyrusre.modellibrary.papyrusrestandardutils.verificationandvalidationconcerns.VerificationAndValidationConcernsPackage#getVV_StatusKind()
* @model
* @generated
*/
public enum VV_StatusKind implements Enumerator {
/**
* The '<em><b>Pending</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PENDING_VALUE
* @generated
* @ordered
*/
PENDING(0, "Pending", "Pending"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Passed</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PASSED_VALUE
* @generated
* @ordered
*/
PASSED(1, "Passed", "Passed"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Failed</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #FAILED_VALUE
* @generated
* @ordered
*/
FAILED(2, "Failed", "Failed"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Inconclusive</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #INCONCLUSIVE_VALUE
* @generated
* @ordered
*/
INCONCLUSIVE(3, "Inconclusive", "Inconclusive"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Pending</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Pending</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PENDING
* @model name="Pending"
* @generated
* @ordered
*/
public static final int PENDING_VALUE = 0;
/**
* The '<em><b>Passed</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Passed</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PASSED
* @model name="Passed"
* @generated
* @ordered
*/
public static final int PASSED_VALUE = 1;
/**
* The '<em><b>Failed</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Failed</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #FAILED
* @model name="Failed"
* @generated
* @ordered
*/
public static final int FAILED_VALUE = 2;
/**
* The '<em><b>Inconclusive</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Inconclusive</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #INCONCLUSIVE
* @model name="Inconclusive"
* @generated
* @ordered
*/
public static final int INCONCLUSIVE_VALUE = 3;
/**
* An array of all the '<em><b>VV Status Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final VV_StatusKind[] VALUES_ARRAY =
new VV_StatusKind[] {
PENDING,
PASSED,
FAILED,
INCONCLUSIVE,
};
/**
* A public read-only list of all the '<em><b>VV Status Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<VV_StatusKind> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>VV Status Kind</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param literal the literal.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VV_StatusKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
VV_StatusKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>VV Status Kind</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name the name.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VV_StatusKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
VV_StatusKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>VV Status Kind</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the integer value.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static VV_StatusKind get(int value) {
switch (value) {
case PENDING_VALUE: return PENDING;
case PASSED_VALUE: return PASSED;
case FAILED_VALUE: return FAILED;
case INCONCLUSIVE_VALUE: return INCONCLUSIVE;
}
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 VV_StatusKind(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;
}
} //VV_StatusKind