blob: d6e08816bbf7849e4ab3bf2baefe6dc5a2ae90b9 [file] [log] [blame]
/**
* Copyright (c) 2002-2006 IBM Corporation 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
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.xsd;
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>Namespace Constraint Category</b></em>'.
* @see org.eclipse.xsd.XSDWildcard#getNamespaceConstraintCategory()
* @see org.eclipse.xsd.XSDWildcard#getNamespaceConstraint()
* @<!-- end-user-doc -->
* @see org.eclipse.xsd.XSDPackage#getXSDNamespaceConstraintCategory()
* @model
* @generated
*/
public enum XSDNamespaceConstraintCategory implements Enumerator
{
/**
* The '<em><b>Any</b></em>' literal object.
* <!-- begin-user-doc -->
* <p>
* </p>
* <!-- end-user-doc -->
* @see #ANY
* @generated
* @ordered
*/
ANY_LITERAL(0, "any", "any"),
/**
* The '<em><b>Not</b></em>' literal object.
* <!-- begin-user-doc -->
* <p>
* </p>
* <!-- end-user-doc -->
* @see #NOT
* @generated
* @ordered
*/
NOT_LITERAL(1, "not", "not"),
/**
* The '<em><b>Set</b></em>' literal object.
* <!-- begin-user-doc -->
* <p>
* </p>
* <!-- end-user-doc -->
* @see #SET
* @generated
* @ordered
*/
SET_LITERAL(2, "set", "set");
/**
* The '<em><b>Any</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* This is used to indicate that any namespace is matched.
* </p>
* <!-- end-user-doc -->
* @see #ANY_LITERAL
* @model name="any"
* @generated
* @ordered
*/
public static final int ANY = 0;
/**
* The '<em><b>Not</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* This is used to indicate that any namespace not in the (singleton) set is matched.
* </p>
* <!-- end-user-doc -->
* @see #NOT_LITERAL
* @model name="not"
* @generated
* @ordered
*/
public static final int NOT = 1;
/**
* The '<em><b>Set</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* This is used to indicate that any namespace in the set is matched.
* </p>
* <!-- end-user-doc -->
* @see #SET_LITERAL
* @model name="set"
* @generated
* @ordered
*/
public static final int SET = 2;
/**
* An array of all the '<em><b>Namespace Constraint Category</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final XSDNamespaceConstraintCategory[] VALUES_ARRAY =
new XSDNamespaceConstraintCategory[]
{
ANY_LITERAL,
NOT_LITERAL,
SET_LITERAL,
};
/**
* A public read-only list of all the '<em><b>Namespace Constraint Category</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<XSDNamespaceConstraintCategory> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Namespace Constraint Category</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 XSDNamespaceConstraintCategory get(String literal)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
XSDNamespaceConstraintCategory result = VALUES_ARRAY[i];
if (result.toString().equals(literal))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Namespace Constraint Category</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 XSDNamespaceConstraintCategory getByName(String name)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
XSDNamespaceConstraintCategory result = VALUES_ARRAY[i];
if (result.getName().equals(name))
{
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Namespace Constraint Category</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 XSDNamespaceConstraintCategory get(int value)
{
switch (value)
{
case ANY: return ANY_LITERAL;
case NOT: return NOT_LITERAL;
case SET: return SET_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 XSDNamespaceConstraintCategory(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;
}
}