blob: ce8b260c3249ad2b998b65054bd119f8fe0841b8 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which 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.gmf.runtime.notation;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.AbstractEnumerator;
/**
* <!-- begin-user-doc --> A representation of the literals of the enumeration
* '<em><b>Gradient Style</b></em>', and utility methods for working with them.
* <!-- end-user-doc -->
*
* @see org.eclipse.gmf.runtime.notation.NotationPackage#getGradientStyle()
* @model
* @generated
*/
public final class GradientStyle extends AbstractEnumerator {
/**
* The '<em><b>Vertical</b></em>' literal value. <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Vertical</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @see #VERTICAL_LITERAL
* @model name="Vertical"
* @generated
* @ordered
*/
public static final int VERTICAL = 0;
/**
* The '<em><b>Horizontal</b></em>' literal value. <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Horizontal</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @see #HORIZONTAL_LITERAL
* @model name="Horizontal"
* @generated
* @ordered
*/
public static final int HORIZONTAL = 1;
/**
* The '<em><b>Vertical</b></em>' literal object. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @see #VERTICAL
* @generated
* @ordered
*/
public static final GradientStyle VERTICAL_LITERAL = new GradientStyle(VERTICAL, "Vertical", "Vertical"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* The '<em><b>Horizontal</b></em>' literal object. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @see #HORIZONTAL
* @generated
* @ordered
*/
public static final GradientStyle HORIZONTAL_LITERAL = new GradientStyle(HORIZONTAL, "Horizontal", "Horizontal"); //$NON-NLS-1$ //$NON-NLS-2$
/**
* An array of all the '<em><b>Gradient Style</b></em>' enumerators. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
private static final GradientStyle[] VALUES_ARRAY = new GradientStyle[] { VERTICAL_LITERAL, HORIZONTAL_LITERAL, };
/**
* A public read-only list of all the '<em><b>Gradient Style</b></em>'
* enumerators. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Gradient Style</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 GradientStyle get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
GradientStyle result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Gradient Style</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 GradientStyle getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
GradientStyle result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Gradient Style</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 GradientStyle get(int value) {
switch (value) {
case VERTICAL:
return VERTICAL_LITERAL;
case HORIZONTAL:
return HORIZONTAL_LITERAL;
}
return null;
}
/**
* Only this class can construct instances. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
private GradientStyle(int value, String name, String literal) {
super(value, name, literal);
}
} // GradientStyle