From c0a758eedd457a5d8eb9f1a6c17fc24143aabb3e Mon Sep 17 00:00:00 2001 From: ArenBabikian Date: Sun, 26 Apr 2020 18:23:13 -0400 Subject: Add PLEDGE case study files --- .../src/Taxation/Job_Activity.java | 232 +++++++++++++++++++++ 1 file changed, 232 insertions(+) create mode 100644 Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Job_Activity.java (limited to 'Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Job_Activity.java') diff --git a/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Job_Activity.java b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Job_Activity.java new file mode 100644 index 00000000..aee76b1b --- /dev/null +++ b/Tests/MODELS2020-CaseStudies/case.study.pledge.model/src/Taxation/Job_Activity.java @@ -0,0 +1,232 @@ +/** + */ +package Taxation; + +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 'Job Activity', + * and utility methods for working with them. + * + * @see Taxation.TaxationPackage#getJob_Activity() + * @model + * @generated + */ +public enum Job_Activity implements Enumerator { + /** + * The 'Salary' literal object. + * + * + * @see #SALARY_VALUE + * @generated + * @ordered + */ + SALARY(0, "Salary", "Salary"), + + /** + * The 'Pension' literal object. + * + * + * @see #PENSION_VALUE + * @generated + * @ordered + */ + PENSION(1, "Pension", "Pension"), + + /** + * The 'Annuity' literal object. + * + * + * @see #ANNUITY_VALUE + * @generated + * @ordered + */ + ANNUITY(2, "Annuity", "Annuity"); + + /** + * The 'Salary' literal value. + * + * + * @see #SALARY + * @model name="Salary" + * @generated + * @ordered + */ + public static final int SALARY_VALUE = 0; + + /** + * The 'Pension' literal value. + * + * + * @see #PENSION + * @model name="Pension" + * @generated + * @ordered + */ + public static final int PENSION_VALUE = 1; + + /** + * The 'Annuity' literal value. + * + * + * @see #ANNUITY + * @model name="Annuity" + * @generated + * @ordered + */ + public static final int ANNUITY_VALUE = 2; + + /** + * An array of all the 'Job Activity' enumerators. + * + * + * @generated + */ + private static final Job_Activity[] VALUES_ARRAY = + new Job_Activity[] { + SALARY, + PENSION, + ANNUITY, + }; + + /** + * A public read-only list of all the 'Job Activity' enumerators. + * + * + * @generated + */ + public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); + + /** + * Returns the 'Job Activity' literal with the specified literal value. + * + * + * @param literal the literal. + * @return the matching enumerator or null. + * @generated + */ + public static Job_Activity get(String literal) { + for (int i = 0; i < VALUES_ARRAY.length; ++i) { + Job_Activity result = VALUES_ARRAY[i]; + if (result.toString().equals(literal)) { + return result; + } + } + return null; + } + + /** + * Returns the 'Job Activity' literal with the specified name. + * + * + * @param name the name. + * @return the matching enumerator or null. + * @generated + */ + public static Job_Activity getByName(String name) { + for (int i = 0; i < VALUES_ARRAY.length; ++i) { + Job_Activity result = VALUES_ARRAY[i]; + if (result.getName().equals(name)) { + return result; + } + } + return null; + } + + /** + * Returns the 'Job Activity' literal with the specified integer value. + * + * + * @param value the integer value. + * @return the matching enumerator or null. + * @generated + */ + public static Job_Activity get(int value) { + switch (value) { + case SALARY_VALUE: return SALARY; + case PENSION_VALUE: return PENSION; + case ANNUITY_VALUE: return ANNUITY; + } + 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 Job_Activity(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; + } + +} //Job_Activity -- cgit v1.2.3-70-g09d2