Placeholder editions for testing feature resolution. These should not be used or relyed on outside of tests.
from enum value: EDITION_1_TEST_ONLY = 1;
Editions that have been released. The specific values are arbitrary and should not be depended on, but they will always be time-ordered for easy comparison.
from enum value: EDITION_2023 = 1000;
from enum value: EDITION_2024 = 1001;
from enum value: EDITION_2_TEST_ONLY = 2;
from enum value: EDITION_99997_TEST_ONLY = 99997;
from enum value: EDITION_99998_TEST_ONLY = 99998;
from enum value: EDITION_99999_TEST_ONLY = 99999;
A placeholder edition for specifying default behaviors before a feature was first introduced. This is effectively an "infinite past".
from enum value: EDITION_LEGACY = 900;
Placeholder for specifying unbounded edition support. This should only ever be used by plugins that can expect to never require any changes to support a new edition.
from enum value: EDITION_MAX = 2147483647;
Legacy syntax "editions". These pre-date editions, but behave much like distinct editions. These can't be used to specify the edition of proto files, but feature definitions must supply proto2/proto3 defaults for backwards compatibility.
from enum value: EDITION_PROTO2 = 998;
from enum value: EDITION_PROTO3 = 999;
A placeholder for an unknown edition value.
from enum value: EDITION_UNKNOWN = 0;
The full set of known editions.
Generated
from enum google.protobuf.Edition