blob: 0e198d38ea18d867f77a28b1a5408dd128796bbd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.ecl.model.diagram;
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>Get Edit Part Kind</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.rcptt.tesla.ecl.model.diagram.DiagramPackage#getGetEditPartKind()
* @model
* @generated
*/
public enum GetEditPartKind implements Enumerator {
/**
* The '<em><b>Path</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PATH_VALUE
* @generated
* @ordered
*/
PATH(0, "path", "by-path"),
/**
* The '<em><b>Name</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NAME_VALUE
* @generated
* @ordered
*/
NAME(1, "name", "by-name"),
/**
* The '<em><b>Classname</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CLASSNAME_VALUE
* @generated
* @ordered
*/
CLASSNAME(2, "classname", "by-classname"), /**
* The '<em><b>Feature</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #FEATURE_VALUE
* @generated
* @ordered
*/
FEATURE(3, "feature", "by-feature");
/**
* The '<em><b>Path</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Path</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PATH
* @model name="path" literal="by-path"
* @generated
* @ordered
*/
public static final int PATH_VALUE = 0;
/**
* The '<em><b>Name</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Name</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NAME
* @model name="name" literal="by-name"
* @generated
* @ordered
*/
public static final int NAME_VALUE = 1;
/**
* The '<em><b>Classname</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Classname</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CLASSNAME
* @model name="classname" literal="by-classname"
* @generated
* @ordered
*/
public static final int CLASSNAME_VALUE = 2;
/**
* The '<em><b>Feature</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Feature</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #FEATURE
* @model name="feature" literal="by-feature"
* @generated
* @ordered
*/
public static final int FEATURE_VALUE = 3;
/**
* An array of all the '<em><b>Get Edit Part Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final GetEditPartKind[] VALUES_ARRAY =
new GetEditPartKind[] {
PATH,
NAME,
CLASSNAME,
FEATURE,
};
/**
* A public read-only list of all the '<em><b>Get Edit Part Kind</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<GetEditPartKind> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Get Edit Part Kind</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static GetEditPartKind get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
GetEditPartKind result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Get Edit Part Kind</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static GetEditPartKind getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
GetEditPartKind result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Get Edit Part Kind</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static GetEditPartKind get(int value) {
switch (value) {
case PATH_VALUE: return PATH;
case NAME_VALUE: return NAME;
case CLASSNAME_VALUE: return CLASSNAME;
case FEATURE_VALUE: return FEATURE;
}
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 GetEditPartKind(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;
}
} //GetEditPartKind