Enum VariableType
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
JenisVariabel
Jenis variabel yang dibuat oleh mesin.
Untuk memanggil enum, Anda memanggil class induk, nama, dan propertinya. Misalnya,
LinearOptimizationService.VariableType.INTEGER
.
Properti
Properti | Jenis | Deskripsi |
INTEGER | Enum | Jenis variabel yang hanya dapat menggunakan nilai bilangan bulat. |
CONTINUOUS | Enum | Jenis variabel yang dapat menggunakan nilai riil apa pun. |
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2025-07-26 UTC.
[null,null,["Terakhir diperbarui pada 2025-07-26 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. |"]]