Enum VariableType
Stay organized with collections
Save and categorize content based on your preferences.
VariableType
Type of variables created by the engine.
To call an enum, you call its parent class, name, and property. For example,
LinearOptimizationService.VariableType.INTEGER
.
Properties
Property | Type | Description |
INTEGER | Enum | Type of variable that can only take integer values. |
CONTINUOUS | Enum | Type of variable that can take any real value. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-12-02 UTC.
[null,null,["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eVariableType\u003c/code\u003e determines the kind of variables used in the Linear Optimization service.\u003c/p\u003e\n"],["\u003cp\u003eTo specify a variable type, use the format: \u003ccode\u003eLinearOptimizationService.VariableType.{property}\u003c/code\u003e, for example, \u003ccode\u003eLinearOptimizationService.VariableType.INTEGER\u003c/code\u003e for integer variables.\u003c/p\u003e\n"],["\u003cp\u003eTwo variable types are available: \u003ccode\u003eINTEGER\u003c/code\u003e for whole numbers and \u003ccode\u003eCONTINUOUS\u003c/code\u003e for any real number.\u003c/p\u003e\n"]]],["The `VariableType` defines the nature of variables used within the engine. It can be accessed via `LinearOptimizationService.VariableType`. It offers two properties: `INTEGER`, representing variables limited to integer values, and `CONTINUOUS`, representing variables that can assume any real value. Both `INTEGER` and `CONTINUOUS` are enumerated types.\n"],null,["# Enum VariableType\n\nVariableType\n\nType of variables created by the engine.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nLinearOptimizationService.VariableType.INTEGER`. \n\n### Properties\n\n| Property | Type | Description |\n|--------------|--------|-----------------------------------------------------|\n| `INTEGER` | `Enum` | Type of variable that can only take integer values. |\n| `CONTINUOUS` | `Enum` | Type of variable that can take any real value. |"]]