Validation¶
Functions for validating jucer project attributes
-
juce.validation.is_valid_aax_category(category)¶ Returns true if a valid AAX category was given
Parameters: category – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_au_category(category)¶ Returns true if a valid AudioUnit category was given
Parameters: category – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_boolean(boolean)¶ Returns true if the given value represents a bool
Parameters: boolean – Value to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_cpp_standard(standard)¶ Returns true if the given standard is valid
Parameters: standard – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_four_digit_code(code)¶ Returns true if a code with 4 digits and at least one upper case letter was given
Parameters: code – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_line_feed(line_feed)¶ Returns true if the line feed is valid
Parameters: line_feed – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_namespace(namespace)¶ Returns true if the given namespace is valid
Parameters: namespace – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_plugin_code(code)¶ Returns true if a valid plugin code was given
Parameters: code – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_plugin_manufacturer_code(code)¶ Returns true if a valid plugin manufacturer code was given
Parameters: code – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_project_type(project_type)¶ Returns true if a valid project type was give
Parameters: project_type – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_rtas_category(category)¶ Returns true if a valid RTAS category was given
Parameters: category – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_vst2_category(category)¶ Returns true if a valid VST2 category was given
Parameters: category – String to test Returns: Validation result Return type: bool
-
juce.validation.is_valid_vst3_category(category)¶ Returns true if a valid VST3 category was given
Parameters: category – String to test Returns: Validation result Return type: bool