org.eclipse.xsd.XSDSubstitutionGroupExclusions Maven / Gradle / Ivy
/**
* 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;
/**
*
* A representation of the literals of the enumeration 'Substitution Group Exclusions'.
* @see org.eclipse.xsd.XSDElementDeclaration#getSubstitutionGroupExclusions()
* @
* @see org.eclipse.xsd.XSDPackage#getXSDSubstitutionGroupExclusions()
* @model
* @generated
*/
public enum XSDSubstitutionGroupExclusions implements Enumerator
{
/**
* The 'Extension' literal object.
*
*
*
*
* @see #EXTENSION
* @generated
* @ordered
*/
EXTENSION_LITERAL(0, "extension", "extension"),
/**
* The 'Restriction' literal object.
*
*
*
*
* @see #RESTRICTION
* @generated
* @ordered
*/
RESTRICTION_LITERAL(1, "restriction", "restriction");
/**
* The 'Extension' literal value.
*
*
* This is used to indicate that an element with a type derived via extension
* may not be nominated to an element declaration's substitution group.
*
*
* @see #EXTENSION_LITERAL
* @model name="extension"
* @generated
* @ordered
*/
public static final int EXTENSION = 0;
/**
* The 'Restriction' literal value.
*
*
* This is used to indicate that an element with a type derived via restriction
* may not be nominated to an element declaration's substitution group.
*
*
* @see #RESTRICTION_LITERAL
* @model name="restriction"
* @generated
* @ordered
*/
public static final int RESTRICTION = 1;
/**
* An array of all the 'Substitution Group Exclusions' enumerators.
*
*
* @generated
*/
private static final XSDSubstitutionGroupExclusions[] VALUES_ARRAY =
new XSDSubstitutionGroupExclusions[]
{
EXTENSION_LITERAL,
RESTRICTION_LITERAL,
};
/**
* A public read-only list of all the 'Substitution Group Exclusions' enumerators.
*
*
* @generated
*/
public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the 'Substitution Group Exclusions' literal with the specified literal value.
*
*
* @param literal the literal.
* @return the matching enumerator or null
.
* @generated
*/
public static XSDSubstitutionGroupExclusions get(String literal)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
XSDSubstitutionGroupExclusions result = VALUES_ARRAY[i];
if (result.toString().equals(literal))
{
return result;
}
}
return null;
}
/**
* Returns the 'Substitution Group Exclusions' literal with the specified name.
*
*
* @param name the name.
* @return the matching enumerator or null
.
* @generated
*/
public static XSDSubstitutionGroupExclusions getByName(String name)
{
for (int i = 0; i < VALUES_ARRAY.length; ++i)
{
XSDSubstitutionGroupExclusions result = VALUES_ARRAY[i];
if (result.getName().equals(name))
{
return result;
}
}
return null;
}
/**
* Returns the 'Substitution Group Exclusions' literal with the specified integer value.
*
*
* @param value the integer value.
* @return the matching enumerator or null
.
* @generated
*/
public static XSDSubstitutionGroupExclusions get(int value)
{
switch (value)
{
case EXTENSION: return EXTENSION_LITERAL;
case RESTRICTION: return RESTRICTION_LITERAL;
}
return null;
}
/**
*
*
* @generated
*/
private final int value;
/**
*
*
* @generated
*/
private final String name;
/**
*
*
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
*
*
* @generated
*/
private XSDSubstitutionGroupExclusions(int value, String name, String literal)
{
this.value = value;
this.name = name;
this.literal = literal;
}
/**
*
*
* @generated
*/
@Override
public int getValue()
{
return value;
}
/**
*
*
* @generated
*/
@Override
public String getName()
{
return name;
}
/**
*
*
* @generated
*/
@Override
public String getLiteral()
{
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
*
*
* @generated
*/
@Override
public String toString()
{
return literal;
}
}