ParameterType Enumeration

Namespace: id3.Devices

Definition

Defines the variety of data types that a parameter can represent, providing a framework for parameter value specification and validation within the system.
class ParameterType
enum ParameterType
public enum ParameterType
public enum ParameterType
typedef enum id3DevicesParameterType

Fields

Name

Value

Description

none

0

Used for parameters whose type is not defined or applicable, serving as a default or placeholder value.

int

1

Represents parameters that hold a 32-bit signed integer value, commonly used for numerical settings.

float

2

Denotes parameters with floating-point values, allowing for fractional numbers in parameter settings.

string

3

Specifies parameters that contain textual data, useful for descriptive or configurable string values.

intString

4

Indicates parameters that can accept either integer or string values, offering dual data type flexibility.

deviceParameterList

5

Represents a list of device parameters, enabling complex or grouped parameter configurations.