blob: 1d7d98b1bd5a442e48ac3cc0956021811181f237 [file] [log] [blame]
/**
* Copyright (c) 2013 Ericsson
*
* 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
*
* Description:
*
* Contributors:
* Miles Parker, Tasktop Technologies - Initial API and implementation
*
*/
package org.eclipse.mylyn.reviews.example.emftasks;
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>Status</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.mylyn.reviews.example.emftasks.EmfTasksPackage#getStatus()
* @model
* @generated
*/
public enum Status implements Enumerator {
/**
* The '<em><b>New</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NEW_VALUE
* @generated
* @ordered
*/
NEW(1, "New", "NEW"),
/**
* The '<em><b>Active</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ACTIVE_VALUE
* @generated
* @ordered
*/
ACTIVE(2, "Active", "ACTIVE"),
/**
* The '<em><b>Complete</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #COMPLETE_VALUE
* @generated
* @ordered
*/
COMPLETE(3, "Complete", "COMPLETE"),
/**
* The '<em><b>Deferred</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DEFERRED_VALUE
* @generated
* @ordered
*/
DEFERRED(4, "Deferred", "DEFERRED"),
/**
* The '<em><b>Invalid</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #INVALID_VALUE
* @generated
* @ordered
*/
INVALID(5, "Invalid", "INVALID");
/**
* The '<em><b>New</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>New</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NEW
* @model name="New" literal="NEW"
* @generated
* @ordered
*/
public static final int NEW_VALUE = 1;
/**
* The '<em><b>Active</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Active</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #ACTIVE
* @model name="Active" literal="ACTIVE"
* @generated
* @ordered
*/
public static final int ACTIVE_VALUE = 2;
/**
* The '<em><b>Complete</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Complete</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #COMPLETE
* @model name="Complete" literal="COMPLETE"
* @generated
* @ordered
*/
public static final int COMPLETE_VALUE = 3;
/**
* The '<em><b>Deferred</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Deferred</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #DEFERRED
* @model name="Deferred" literal="DEFERRED"
* @generated
* @ordered
*/
public static final int DEFERRED_VALUE = 4;
/**
* The '<em><b>Invalid</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Invalid</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #INVALID
* @model name="Invalid" literal="INVALID"
* @generated
* @ordered
*/
public static final int INVALID_VALUE = 5;
/**
* An array of all the '<em><b>Status</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final Status[] VALUES_ARRAY =
new Status[] {
NEW,
ACTIVE,
COMPLETE,
DEFERRED,
INVALID,
};
/**
* A public read-only list of all the '<em><b>Status</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<Status> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Status</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Status get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Status result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Status</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Status getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Status result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Status</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Status get(int value) {
switch (value) {
case NEW_VALUE: return NEW;
case ACTIVE_VALUE: return ACTIVE;
case COMPLETE_VALUE: return COMPLETE;
case DEFERRED_VALUE: return DEFERRED;
case INVALID_VALUE: return INVALID;
}
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 Status(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;
}
} //Status