Enum ProductOperations

    • 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

      • 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 name
        NullPointerException - 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 interface Enumerator
        Generated class or method.
      • toString

        public String toString()
        Returns the literal value of the enumerator, which is its string representation.
        Overrides:
        toString in class Enum<ProductOperations>
        Generated class or method.