parameterName | パラメータ名。 A parameter name. |
parameterValue | パラメータ値。 The value of the parameter. |
minimumValue | パラメータ値の許容範囲の下限。 The lower bound of the allowed parameter range. |
minimum_parameterName | 下限に対応するパラメータ名。
これを""とすれば
パラメータ値ではなく定数での下限指定となる。 The parameter name corresponding to the lower bound. Using "" results in specifying the lower bound not as a parameter but as a constant. |
maximumValue | パラメータ値の許容範囲の上限。 The upper bound of the allowed parameter range. |
maximum_parameterName | 上限に対応するパラメータ名。
これを""とすれば
パラメータ値ではなく定数での上限指定となる。 The parameter name corresponding to the upper bound. Using "" results in specifying the upper bound not as a parameter but as a constant. |
エラー :
パラメータparameterNameの値として
parameterValueが指定されましたが、
この値はminimumValueよりも大きくかつ
maximumValueよりも小さくなければなりません。 ERROR : parameterValue was specified for parameter "parameterName", which must be greater than maximumValue and less than maximumValue. |