blob: 398d4ea0f490878171a8fb8263be4edcaeb512d1 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datamartdsl;
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>Set Aggregation Enum</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getSetAggregationEnum()
* @model
* @generated
*/
public enum SetAggregationEnum implements Enumerator {
/**
* The '<em><b>TOPCOUNT</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #TOPCOUNT_VALUE
* @generated
* @ordered
*/
TOPCOUNT(0, "TOPCOUNT", "topcount"),
/**
* The '<em><b>TOPSUM</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #TOPSUM_VALUE
* @generated
* @ordered
*/
TOPSUM(0, "TOPSUM", "topsummation"),
/**
* The '<em><b>TOPPERCENT</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #TOPPERCENT_VALUE
* @generated
* @ordered
*/
TOPPERCENT(0, "TOPPERCENT", "toppercentage"),
/**
* The '<em><b>BOTTOMCOUNT</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #BOTTOMCOUNT_VALUE
* @generated
* @ordered
*/
BOTTOMCOUNT(0, "BOTTOMCOUNT", "bottomcount"),
/**
* The '<em><b>BOTTOMSUM</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #BOTTOMSUM_VALUE
* @generated
* @ordered
*/
BOTTOMSUM(0, "BOTTOMSUM", "bottomsummation"),
/**
* The '<em><b>BOTTOMPERCENT</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #BOTTOMPERCENT_VALUE
* @generated
* @ordered
*/
BOTTOMPERCENT(0, "BOTTOMPERCENT", "bottompercentage");
/**
* The '<em><b>TOPCOUNT</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>TOPCOUNT</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #TOPCOUNT
* @model literal="topcount"
* @generated
* @ordered
*/
public static final int TOPCOUNT_VALUE = 0;
/**
* The '<em><b>TOPSUM</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>TOPSUM</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #TOPSUM
* @model literal="topsummation"
* @generated
* @ordered
*/
public static final int TOPSUM_VALUE = 0;
/**
* The '<em><b>TOPPERCENT</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>TOPPERCENT</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #TOPPERCENT
* @model literal="toppercentage"
* @generated
* @ordered
*/
public static final int TOPPERCENT_VALUE = 0;
/**
* The '<em><b>BOTTOMCOUNT</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>BOTTOMCOUNT</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #BOTTOMCOUNT
* @model literal="bottomcount"
* @generated
* @ordered
*/
public static final int BOTTOMCOUNT_VALUE = 0;
/**
* The '<em><b>BOTTOMSUM</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>BOTTOMSUM</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #BOTTOMSUM
* @model literal="bottomsummation"
* @generated
* @ordered
*/
public static final int BOTTOMSUM_VALUE = 0;
/**
* The '<em><b>BOTTOMPERCENT</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>BOTTOMPERCENT</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #BOTTOMPERCENT
* @model literal="bottompercentage"
* @generated
* @ordered
*/
public static final int BOTTOMPERCENT_VALUE = 0;
/**
* An array of all the '<em><b>Set Aggregation Enum</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final SetAggregationEnum[] VALUES_ARRAY =
new SetAggregationEnum[] {
TOPCOUNT,
TOPSUM,
TOPPERCENT,
BOTTOMCOUNT,
BOTTOMSUM,
BOTTOMPERCENT,
};
/**
* A public read-only list of all the '<em><b>Set Aggregation Enum</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<SetAggregationEnum> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Set Aggregation Enum</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 SetAggregationEnum get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SetAggregationEnum result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Set Aggregation Enum</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 SetAggregationEnum getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SetAggregationEnum result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Set Aggregation Enum</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 SetAggregationEnum get(int value) {
switch (value) {
case TOPCOUNT_VALUE: return TOPCOUNT;
}
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 SetAggregationEnum(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;
}
} //SetAggregationEnum