blob: f1ef224bca18807d51303685e0fe28314e4bec00 [file] [log] [blame]
/*
* Copyright (c) 2006, 2018 IBM Corporation, CEA, 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 - initial API and implementation
* Christian W. Damus (CEA) - 251963
* Kenn Hussey (CEA) - 418466, 451350, 485756
* Kenn Hussey - 342235
*
*/
package org.eclipse.uml2.uml;
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>Expansion Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* ExpansionKind is an enumeration type used to specify how an ExpansionRegion executes its contents.
* <p>From package UML::Actions.</p>
* <!-- end-model-doc -->
* @see org.eclipse.uml2.uml.UMLPackage#getExpansionKind()
* @model
* @generated
*/
public enum ExpansionKind
implements Enumerator {
/**
* The '<em><b>Parallel</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The content of the ExpansionRegion is executed concurrently for the elements of the input collections.
* <!-- end-model-doc -->
* @see #PARALLEL
* @generated
* @ordered
*/
PARALLEL_LITERAL(0, "parallel", "parallel"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Iterative</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The content of the ExpansionRegion is executed iteratively for the elements of the input collections, in the order of the input elements, if the collections are ordered.
* <!-- end-model-doc -->
* @see #ITERATIVE
* @generated
* @ordered
*/
ITERATIVE_LITERAL(1, "iterative", "iterative"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Stream</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A stream of input collection elements flows into a single execution of the content of the ExpansionRegion, in the order of the collection elements if the input collections are ordered.
* <!-- end-model-doc -->
* @see #STREAM
* @generated
* @ordered
*/
STREAM_LITERAL(2, "stream", "stream"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Parallel</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The content of the ExpansionRegion is executed concurrently for the elements of the input collections.
* <!-- end-model-doc -->
* @see #PARALLEL_LITERAL
* @model name="parallel"
* @generated
* @ordered
*/
public static final int PARALLEL = 0;
/**
* The '<em><b>Iterative</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The content of the ExpansionRegion is executed iteratively for the elements of the input collections, in the order of the input elements, if the collections are ordered.
* <!-- end-model-doc -->
* @see #ITERATIVE_LITERAL
* @model name="iterative"
* @generated
* @ordered
*/
public static final int ITERATIVE = 1;
/**
* The '<em><b>Stream</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A stream of input collection elements flows into a single execution of the content of the ExpansionRegion, in the order of the collection elements if the input collections are ordered.
* <!-- end-model-doc -->
* @see #STREAM_LITERAL
* @model name="stream"
* @generated
* @ordered
*/
public static final int STREAM = 2;
/**
* An array of all the '<em><b>Expansion Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final ExpansionKind[] VALUES_ARRAY = new ExpansionKind[]{
PARALLEL_LITERAL, ITERATIVE_LITERAL, STREAM_LITERAL,};
/**
* A public read-only list of all the '<em><b>Expansion Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<ExpansionKind> VALUES = Collections
.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Expansion 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 ExpansionKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ExpansionKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Expansion 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 ExpansionKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ExpansionKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Expansion 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 ExpansionKind get(int value) {
switch (value) {
case PARALLEL :
return PARALLEL_LITERAL;
case ITERATIVE :
return ITERATIVE_LITERAL;
case STREAM :
return STREAM_LITERAL;
}
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 ExpansionKind(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;
}
} //ExpansionKind