
BusinessDomainDsl.Multiplicity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod4j-businessdomain-mm Show documentation
Show all versions of mod4j-businessdomain-mm Show documentation
This Eclipse plug-in project contains the BusinessDomain meta model.
The newest version!
/**
*
*
*
* $Id$
*/
package BusinessDomainDsl;
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 'Multiplicity',
* and utility methods for working with them.
*
* @see BusinessDomainDsl.BusinessDomainDslPackage#getMultiplicity()
* @model
* @generated
*/
public enum Multiplicity implements Enumerator {
/**
* The 'Zero Many' literal object.
*
*
* @see #ZERO_MANY_VALUE
* @generated
* @ordered
*/
ZERO_MANY(0, "ZeroMany", "ZeroMany"),
/**
* The 'One' literal object.
*
*
* @see #ONE_VALUE
* @generated
* @ordered
*/
ONE(1, "One", "One"),
/**
* The 'Zero One' literal object.
*
*
* @see #ZERO_ONE_VALUE
* @generated
* @ordered
*/
ZERO_ONE(2, "ZeroOne", "ZeroOne"),
/**
* The 'One Many' literal object.
*
*
* @see #ONE_MANY_VALUE
* @generated
* @ordered
*/
ONE_MANY(3, "OneMany", "OneMany");
/**
* The 'Zero Many' literal value.
*
*
* If the meaning of 'Zero Many' literal object isn't clear,
* there really should be more of a description here...
*
*
* @see #ZERO_MANY
* @model name="ZeroMany"
* @generated
* @ordered
*/
public static final int ZERO_MANY_VALUE = 0;
/**
* The 'One' literal value.
*
*
* If the meaning of 'One' literal object isn't clear,
* there really should be more of a description here...
*
*
* @see #ONE
* @model name="One"
* @generated
* @ordered
*/
public static final int ONE_VALUE = 1;
/**
* The 'Zero One' literal value.
*
*
* If the meaning of 'Zero One' literal object isn't clear,
* there really should be more of a description here...
*
*
* @see #ZERO_ONE
* @model name="ZeroOne"
* @generated
* @ordered
*/
public static final int ZERO_ONE_VALUE = 2;
/**
* The 'One Many' literal value.
*
*
* If the meaning of 'One Many' literal object isn't clear,
* there really should be more of a description here...
*
*
* @see #ONE_MANY
* @model name="OneMany"
* @generated
* @ordered
*/
public static final int ONE_MANY_VALUE = 3;
/**
* An array of all the 'Multiplicity' enumerators.
*
*
* @generated
*/
private static final Multiplicity[] VALUES_ARRAY =
new Multiplicity[] {
ZERO_MANY,
ONE,
ZERO_ONE,
ONE_MANY,
};
/**
* A public read-only list of all the 'Multiplicity' enumerators.
*
*
* @generated
*/
public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the 'Multiplicity' literal with the specified literal value.
*
*
* @generated
*/
public static Multiplicity get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Multiplicity result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the 'Multiplicity' literal with the specified name.
*
*
* @generated
*/
public static Multiplicity getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Multiplicity result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the 'Multiplicity' literal with the specified integer value.
*
*
* @generated
*/
public static Multiplicity get(int value) {
switch (value) {
case ZERO_MANY_VALUE: return ZERO_MANY;
case ONE_VALUE: return ONE;
case ZERO_ONE_VALUE: return ZERO_ONE;
case ONE_MANY_VALUE: return ONE_MANY;
}
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 Multiplicity(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
*
*
* @generated
*/
public int getValue() {
return value;
}
/**
*
*
* @generated
*/
public String getName() {
return name;
}
/**
*
*
* @generated
*/
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
*
*
* @generated
*/
@Override
public String toString() {
return literal;
}
} //Multiplicity
© 2015 - 2025 Weber Informatics LLC | Privacy Policy