blob: c757ba6d9300bab477baa582151c1bb3d2e1583c [file] [log] [blame]
/**
* Copyright (c) 2010 Mia-Software.
* 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:
*
* Nicolas Guyomar (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.jee.ejbjar.EjbJar31;
import java.lang.String;
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>Trans Attribute Type Base</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.modisco.jee.ejbjar.EjbJar31.EjbJar31Package#getTransAttributeTypeBase()
* @model extendedMetaData="name='trans-attributeType_._base'"
* @generated
*/
public enum TransAttributeTypeBase implements Enumerator {
/**
* The '<em><b>Not Supported</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NOT_SUPPORTED_VALUE
* @generated
* @ordered
*/
NOT_SUPPORTED(0, "NotSupported", "NotSupported"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Supports</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #SUPPORTS_VALUE
* @generated
* @ordered
*/
SUPPORTS(1, "Supports", "Supports"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Required</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #REQUIRED_VALUE
* @generated
* @ordered
*/
REQUIRED(2, "Required", "Required"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Requires New</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #REQUIRES_NEW_VALUE
* @generated
* @ordered
*/
REQUIRES_NEW(3, "RequiresNew", "RequiresNew"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Mandatory</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MANDATORY_VALUE
* @generated
* @ordered
*/
MANDATORY(4, "Mandatory", "Mandatory"), //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Never</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NEVER_VALUE
* @generated
* @ordered
*/
NEVER(5, "Never", "Never"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Not Supported</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Not Supported</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NOT_SUPPORTED
* @model name="NotSupported"
* @generated
* @ordered
*/
public static final int NOT_SUPPORTED_VALUE = 0;
/**
* The '<em><b>Supports</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Supports</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #SUPPORTS
* @model name="Supports"
* @generated
* @ordered
*/
public static final int SUPPORTS_VALUE = 1;
/**
* The '<em><b>Required</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Required</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #REQUIRED
* @model name="Required"
* @generated
* @ordered
*/
public static final int REQUIRED_VALUE = 2;
/**
* The '<em><b>Requires New</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Requires New</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #REQUIRES_NEW
* @model name="RequiresNew"
* @generated
* @ordered
*/
public static final int REQUIRES_NEW_VALUE = 3;
/**
* The '<em><b>Mandatory</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Mandatory</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MANDATORY
* @model name="Mandatory"
* @generated
* @ordered
*/
public static final int MANDATORY_VALUE = 4;
/**
* The '<em><b>Never</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Never</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NEVER
* @model name="Never"
* @generated
* @ordered
*/
public static final int NEVER_VALUE = 5;
/**
* An array of all the '<em><b>Trans Attribute Type Base</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final TransAttributeTypeBase[] VALUES_ARRAY =
new TransAttributeTypeBase[] {
NOT_SUPPORTED,
SUPPORTS,
REQUIRED,
REQUIRES_NEW,
MANDATORY,
NEVER,
};
/**
* A public read-only list of all the '<em><b>Trans Attribute Type Base</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<TransAttributeTypeBase> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Trans Attribute Type Base</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static TransAttributeTypeBase get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
TransAttributeTypeBase result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Trans Attribute Type Base</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static TransAttributeTypeBase getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
TransAttributeTypeBase result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Trans Attribute Type Base</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static TransAttributeTypeBase get(int value) {
switch (value) {
case NOT_SUPPORTED_VALUE: return NOT_SUPPORTED;
case SUPPORTS_VALUE: return SUPPORTS;
case REQUIRED_VALUE: return REQUIRED;
case REQUIRES_NEW_VALUE: return REQUIRES_NEW;
case MANDATORY_VALUE: return MANDATORY;
case NEVER_VALUE: return NEVER;
}
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 TransAttributeTypeBase(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;
}
} //TransAttributeTypeBase