blob: 08b888f90546557e70df86236cca93b8eccd48d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2019 IBM Corporation and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.jpt.jaxb.eclipselink.core.resource.oxm;
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>EXml Ns Form</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.jpt.jaxb.eclipselink.core.resource.oxm.OxmPackage#getEXmlNsForm()
* @model
* @generated
*/
public enum EXmlNsForm implements Enumerator
{
/**
* The '<em><b>UNQUALIFIED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #UNQUALIFIED_VALUE
* @generated
* @ordered
*/
UNQUALIFIED(0, "UNQUALIFIED", "UNQUALIFIED"),
/**
* The '<em><b>QUALIFIED</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #QUALIFIED_VALUE
* @generated
* @ordered
*/
QUALIFIED(1, "QUALIFIED", "QUALIFIED"),
/**
* The '<em><b>UNSET</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #UNSET_VALUE
* @generated
* @ordered
*/
UNSET(2, "UNSET", "UNSET");
/**
* The '<em><b>UNQUALIFIED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>UNQUALIFIED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #UNQUALIFIED
* @model
* @generated
* @ordered
*/
public static final int UNQUALIFIED_VALUE = 0;
/**
* The '<em><b>QUALIFIED</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>QUALIFIED</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #QUALIFIED
* @model
* @generated
* @ordered
*/
public static final int QUALIFIED_VALUE = 1;
/**
* The '<em><b>UNSET</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>UNSET</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #UNSET
* @model
* @generated
* @ordered
*/
public static final int UNSET_VALUE = 2;
/**
* An array of all the '<em><b>EXml Ns Form</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final EXmlNsForm[] VALUES_ARRAY =
new EXmlNsForm[]
{
UNQUALIFIED,
QUALIFIED,
UNSET,
};
/**
* A public read-only list of all the '<em><b>EXml Ns Form</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<EXmlNsForm> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>EXml Ns Form</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static EXmlNsForm get(String literal)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
EXmlNsForm result = VALUES_ARRAY[i];
if (result.toString().equals(literal))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>EXml Ns Form</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static EXmlNsForm getByName(String name)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
EXmlNsForm result = VALUES_ARRAY[i];
if (result.getName().equals(name))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>EXml Ns Form</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static EXmlNsForm get(int value)
{
switch (value)
{
case UNQUALIFIED_VALUE: return UNQUALIFIED;
case QUALIFIED_VALUE: return QUALIFIED;
case UNSET_VALUE: return UNSET;
}
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 EXmlNsForm(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;
}
} //EXmlNsForm