blob: 0336d5888f70b963597360729533d8f9fc4260e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.core.protocol.raw;
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>Execution Status Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.rcptt.tesla.core.protocol.raw.RawPackage#getExecutionStatusKind()
* @model
* @generated
*/
public enum ExecutionStatusKind implements Enumerator {
/**
* The '<em><b>STARTED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #STARTED_VALUE
* @generated
* @ordered
*/
STARTED(0, "STARTED", "STARTED"),
/**
* The '<em><b>RUNNING</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #RUNNING_VALUE
* @generated
* @ordered
*/
RUNNING(1, "RUNNING", "RUNNING"),
/**
* The '<em><b>FINISHED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #FINISHED_VALUE
* @generated
* @ordered
*/
FINISHED(2, "FINISHED", "FINISHED"),
/**
* The '<em><b>CANCELED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CANCELED_VALUE
* @generated
* @ordered
*/
CANCELED(3, "CANCELED", "CANCELED"),
/**
* The '<em><b>PAUSED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PAUSED_VALUE
* @generated
* @ordered
*/
PAUSED(4, "PAUSED", "PAUSED");
/**
* The '<em><b>STARTED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>STARTED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #STARTED
* @model
* @generated
* @ordered
*/
public static final int STARTED_VALUE = 0;
/**
* The '<em><b>RUNNING</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>RUNNING</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #RUNNING
* @model
* @generated
* @ordered
*/
public static final int RUNNING_VALUE = 1;
/**
* The '<em><b>FINISHED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>FINISHED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #FINISHED
* @model
* @generated
* @ordered
*/
public static final int FINISHED_VALUE = 2;
/**
* The '<em><b>CANCELED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>CANCELED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CANCELED
* @model
* @generated
* @ordered
*/
public static final int CANCELED_VALUE = 3;
/**
* The '<em><b>PAUSED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>PAUSED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PAUSED
* @model
* @generated
* @ordered
*/
public static final int PAUSED_VALUE = 4;
/**
* An array of all the '<em><b>Execution Status Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final ExecutionStatusKind[] VALUES_ARRAY = new ExecutionStatusKind[]
{
STARTED,
RUNNING,
FINISHED,
CANCELED,
PAUSED,
};
/**
* A public read-only list of all the '<em><b>Execution Status Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<ExecutionStatusKind> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Execution Status Kind</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static ExecutionStatusKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
ExecutionStatusKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Execution Status Kind</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static ExecutionStatusKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
ExecutionStatusKind result = VALUES_ARRAY[i];
if (result.getName().equals(name))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Execution Status Kind</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static ExecutionStatusKind get(int value) {
switch (value)
{
case STARTED_VALUE:
return STARTED;
case RUNNING_VALUE:
return RUNNING;
case FINISHED_VALUE:
return FINISHED;
case CANCELED_VALUE:
return CANCELED;
case PAUSED_VALUE:
return PAUSED;
}
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 ExecutionStatusKind(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;
}
} //ExecutionStatusKind