Package de.uka.ipd.sdq.stoex
Enum ProductOperations
- java.lang.Object
-
- java.lang.Enum<ProductOperations>
-
- de.uka.ipd.sdq.stoex.ProductOperations
-
- All Implemented Interfaces:
Serializable
,Comparable<ProductOperations>
,Enumerator
public enum ProductOperations extends Enum<ProductOperations> implements Enumerator
A representation of the literals of the enumeration 'Product Operations', and utility methods for working with them.- See Also:
StoexPackage.getProductOperations()
- Generated class or method.
- EMF model class or method.
-
-
Field Summary
Fields Modifier and Type Field Description static String
copyright
static int
DIV_VALUE
The 'DIV' literal value.static int
MOD_VALUE
The 'MOD' literal value.static int
MULT_VALUE
The 'MULT' literal value.static List<ProductOperations>
VALUES
A public read-only list of all the 'Product Operations' enumerators.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProductOperations
get(int value)
Returns the 'Product Operations' literal with the specified integer value.static ProductOperations
get(String literal)
Returns the 'Product Operations' literal with the specified literal value.static ProductOperations
getByName(String name)
Returns the 'Product Operations' literal with the specified name.String
getLiteral()
String
getName()
int
getValue()
String
toString()
Returns the literal value of the enumerator, which is its string representation.static ProductOperations
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProductOperations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MULT
public static final ProductOperations MULT
The 'MULT' literal object.- See Also:
MULT_VALUE
- Generated class or method.
- Ordered collection.
-
DIV
public static final ProductOperations DIV
The 'DIV' literal object.- See Also:
DIV_VALUE
- Generated class or method.
- Ordered collection.
-
MOD
public static final ProductOperations MOD
The 'MOD' literal object.- See Also:
MOD_VALUE
- Generated class or method.
- Ordered collection.
-
-
Field Detail
-
copyright
public static final String copyright
- See Also:
- Constant Field Values
- Generated class or method.
-
MULT_VALUE
public static final int MULT_VALUE
The 'MULT' literal value.- See Also:
MULT
, Constant Field Values- Generated class or method.
- EMF model class or method.
- Ordered collection.
-
DIV_VALUE
public static final int DIV_VALUE
The 'DIV' literal value.- See Also:
DIV
, Constant Field Values- Generated class or method.
- EMF model class or method.
- Ordered collection.
-
MOD_VALUE
public static final int MOD_VALUE
The 'MOD' literal value.- See Also:
MOD
, Constant Field Values- Generated class or method.
- EMF model class or method.
- Ordered collection.
-
VALUES
public static final List<ProductOperations> VALUES
A public read-only list of all the 'Product Operations' enumerators.- Generated class or method.
-
-
Method Detail
-
values
public static ProductOperations[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProductOperations c : ProductOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProductOperations valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
get
public static ProductOperations get(String literal)
Returns the 'Product Operations' literal with the specified literal value.- Parameters:
literal
- the literal.- Returns:
- the matching enumerator or
null
. - Generated class or method.
-
getByName
public static ProductOperations getByName(String name)
Returns the 'Product Operations' literal with the specified name.- Parameters:
name
- the name.- Returns:
- the matching enumerator or
null
. - Generated class or method.
-
get
public static ProductOperations get(int value)
Returns the 'Product Operations' literal with the specified integer value.- Parameters:
value
- the integer value.- Returns:
- the matching enumerator or
null
. - Generated class or method.
-
getValue
public int getValue()
- Specified by:
getValue
in interfaceEnumerator
- Generated class or method.
-
getName
public String getName()
- Specified by:
getName
in interfaceEnumerator
- Generated class or method.
-
getLiteral
public String getLiteral()
- Specified by:
getLiteral
in interfaceEnumerator
- Generated class or method.
-
toString
public String toString()
Returns the literal value of the enumerator, which is its string representation.- Overrides:
toString
in classEnum<ProductOperations>
- Generated class or method.
-
-