All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xsd.XSDXPathVariety 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 'XPath Variety'.
 * @see org.eclipse.xsd.XSDXPathDefinition#getVariety()
 * @
 * @see org.eclipse.xsd.XSDPackage#getXSDXPathVariety()
 * @model
 * @generated
 */
public enum XSDXPathVariety implements Enumerator
{
  /**
   * The 'Selector' literal object.
   *  
   * 

*

* * @see #SELECTOR * @generated * @ordered */ SELECTOR_LITERAL(0, "selector", "selector"), /** * The 'Field' literal object. * *

*

* * @see #FIELD * @generated * @ordered */ FIELD_LITERAL(1, "field", "field"); /** * The 'Selector' literal value. * *

* This is used to indicate that the XPath definition is a selector. *

* * @see #SELECTOR_LITERAL * @model name="selector" * @generated * @ordered */ public static final int SELECTOR = 0; /** * The 'Field' literal value. * *

* This is used to indicate that the XPath definition is a field. *

* * @see #FIELD_LITERAL * @model name="field" * @generated * @ordered */ public static final int FIELD = 1; /** * An array of all the 'XPath Variety' enumerators. * * * @generated */ private static final XSDXPathVariety[] VALUES_ARRAY = new XSDXPathVariety[] { SELECTOR_LITERAL, FIELD_LITERAL, }; /** * A public read-only list of all the 'XPath Variety' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'XPath Variety' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static XSDXPathVariety get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { XSDXPathVariety result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'XPath Variety' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static XSDXPathVariety getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { XSDXPathVariety result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'XPath Variety' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static XSDXPathVariety get(int value) { switch (value) { case SELECTOR: return SELECTOR_LITERAL; case FIELD: return FIELD_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 XSDXPathVariety(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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy