當前位置: 首頁>>代碼示例>>Python>>正文


Python ParameterSelection.setValue方法代碼示例

本文整理匯總了Python中processing.core.parameters.ParameterSelection.setValue方法的典型用法代碼示例。如果您正苦於以下問題:Python ParameterSelection.setValue方法的具體用法?Python ParameterSelection.setValue怎麽用?Python ParameterSelection.setValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在processing.core.parameters.ParameterSelection的用法示例。


在下文中一共展示了ParameterSelection.setValue方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: testMultiple

# 需要導入模塊: from processing.core.parameters import ParameterSelection [as 別名]
# 或者: from processing.core.parameters.ParameterSelection import setValue [as 別名]
 def testMultiple(self):
     parameter = ParameterSelection("myName", "myDesc", ["option1", "option2", "option3"], multiple=True)
     self.assertEqual(parameter.setValue(1), True)
     self.assertEqual(parameter.value, 1)
     self.assertEqual(parameter.setValue([0, 1]), True)
     self.assertEqual(parameter.value, [0, 1])
     self.assertEqual(parameter.setValue(["0", "1"]), True)
     self.assertEqual(parameter.value, [0, 1])
開發者ID:kalxas,項目名稱:QGIS,代碼行數:10,代碼來源:ParametersTest.py

示例2: testSetValue

# 需要導入模塊: from processing.core.parameters import ParameterSelection [as 別名]
# 或者: from processing.core.parameters.ParameterSelection import setValue [as 別名]
 def testSetValue(self):
     parameter = ParameterSelection("myName", "myDesc", ["option1", "option2", "option3"])
     self.assertIsNone(parameter.value)
     self.assertEqual(parameter.setValue(1), True)
     self.assertEqual(parameter.value, 1)
     self.assertEqual(parameter.setValue("1"), True)
     self.assertEqual(parameter.value, 1)
     self.assertEqual(parameter.setValue(1.0), True)
     self.assertEqual(parameter.value, 1)
     self.assertEqual(parameter.setValue("1a"), False)
     self.assertEqual(parameter.setValue([1]), False)
開發者ID:kalxas,項目名稱:QGIS,代碼行數:13,代碼來源:ParametersTest.py

示例3: testTupleOptions

# 需要導入模塊: from processing.core.parameters import ParameterSelection [as 別名]
# 或者: from processing.core.parameters.ParameterSelection import setValue [as 別名]
    def testTupleOptions(self):
        options = (("o1", "option1"), ("o2", "option2"), ("o3", "option3"))

        optionalParameter = ParameterSelection("myName", "myDesc", options, default="o1")
        self.assertEqual(optionalParameter.value, "o1")
        optionalParameter.setValue("o2")
        self.assertEqual(optionalParameter.value, "o2")

        optionalParameter = ParameterSelection("myName", "myDesc", options, default=["o1", "o2"], multiple=True)
        self.assertEqual(optionalParameter.value, ["o1", "o2"])
        optionalParameter.setValue(["o2"])
        self.assertEqual(optionalParameter.value, ["o2"])
開發者ID:kalxas,項目名稱:QGIS,代碼行數:14,代碼來源:ParametersTest.py

示例4: testTupleOptions

# 需要導入模塊: from processing.core.parameters import ParameterSelection [as 別名]
# 或者: from processing.core.parameters.ParameterSelection import setValue [as 別名]
    def testTupleOptions(self):
        options = (
            ('o1', 'option1'),
            ('o2', 'option2'),
            ('o3', 'option3'))

        optionalParameter = ParameterSelection('myName', 'myDesc', options, default='o1')
        self.assertEqual(optionalParameter.value, 'o1')
        optionalParameter.setValue('o2')
        self.assertEqual(optionalParameter.value, 'o2')

        optionalParameter = ParameterSelection('myName', 'myDesc', options, default=['o1', 'o2'], multiple=True)
        self.assertEqual(optionalParameter.value, ['o1', 'o2'])
        optionalParameter.setValue(['o2'])
        self.assertEqual(optionalParameter.value, ['o2'])
開發者ID:GeoCat,項目名稱:QGIS,代碼行數:17,代碼來源:ParametersTest.py

示例5: testOptional

# 需要導入模塊: from processing.core.parameters import ParameterSelection [as 別名]
# 或者: from processing.core.parameters.ParameterSelection import setValue [as 別名]
    def testOptional(self):
        optionalParameter = ParameterSelection(
            "myName", "myDesc", ["option1", "option2", "option3"], default=0, optional=True
        )
        self.assertEqual(optionalParameter.value, 0)
        optionalParameter.setValue(1)
        self.assertEqual(optionalParameter.value, 1)
        self.assertTrue(optionalParameter.setValue(None))
        self.assertEqual(optionalParameter.value, None)

        requiredParameter = ParameterSelection(
            "myName", "myDesc", ["option1", "option2", "option3"], default=0, optional=False
        )
        self.assertEqual(requiredParameter.value, 0)
        requiredParameter.setValue(1)
        self.assertEqual(requiredParameter.value, 1)
        self.assertFalse(requiredParameter.setValue(None))
        self.assertEqual(requiredParameter.value, 1)
開發者ID:kalxas,項目名稱:QGIS,代碼行數:20,代碼來源:ParametersTest.py


注:本文中的processing.core.parameters.ParameterSelection.setValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。