Enumeration PatchClassification

Generated

from enum cyclonedx.v1_5.PatchClassification

Enumeration Members

BACKPORT: 3

A patch which takes code from a newer version of software and applies it to older versions of the same software. Refer to https://en.wikipedia.org/wiki/Backporting

Generated

from enum value: PATCH_CLASSIFICATION_BACKPORT = 3;

CHERRY_PICK: 4

A patch created by selectively applying commits from other versions or branches of the same software.

Generated

from enum value: PATCH_CLASSIFICATION_CHERRY_PICK = 4;

MONKEY: 2

A patch which dynamically modifies runtime behavior. Refer to https://en.wikipedia.org/wiki/Monkey_patch

Generated

from enum value: PATCH_CLASSIFICATION_MONKEY = 2;

NULL: 0

Generated

from enum value: PATCH_CLASSIFICATION_NULL = 0;

UNOFFICIAL: 1

A patch which is not developed by the creators or maintainers of the software being patched. Refer to https://en.wikipedia.org/wiki/Unofficial_patch

Generated

from enum value: PATCH_CLASSIFICATION_UNOFFICIAL = 1;