The default is ORDINAL - an int. Insert a value in the middle and every existing row now means something else.
@Enumerated(EnumType.STRING) // ALWAYS
Status status;
// Default (dangerous):
@Enumerated // ORDINAL: 0, 1, 2 ...
Status status;
ORDINAL after inserting CANCELLED between PLACED and SHIPPED:
every historical "1" changes meaning from SHIPPED to CANCELLED.
STRING stores 'PLACED' and survives reordering.
Run this yourself in the Online Java Compiler, spin up a live REST API in the API Sandbox, or practise with Java interview questions.
Published 2026-08-11