Module ojalgo

Enum ExpressionsBasedModel.IntegrationProperty

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      JAVA_OR_NATIVE_CODE
      Any integration that can switch between Java and native code solvers.
      LP_OR_QP
      Any integration that can handle both LP and QP models.
      PRIMAL_OR_DUAL_LP
      Any LP solver integration that can switch between primal and dual algorithm implementations.
      TEMPORARY
      Something temporary or experimental that does not yet have a specific constant.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private IntegrationProperty()  
    • Constructor Detail

      • IntegrationProperty

        private IntegrationProperty()
    • Method Detail

      • values

        public static ExpressionsBasedModel.IntegrationProperty[] 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 (ExpressionsBasedModel.IntegrationProperty c : ExpressionsBasedModel.IntegrationProperty.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ExpressionsBasedModel.IntegrationProperty valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null