Yes, your changeSet will be marked as EXECUTED, and will not be executed again.
When you execute your changeSet for the first time, Liquibase makes a note in the databasechangelog
table that changeSet with id "xxx" has run successfully.
When you try to execute this exact changeSet for the second time, Liquibase will check the databasechangelog
table. And if there's a record about changeSet "xxx" (that it was executed successfully) then this changeSet will be ignored, and it won't be executed the second time.
But it's not a good idea to ignore preConditions. Someday, someone will write another changeSet that will do basically the same, and you app will fail, because you can't create the same enum twice.
For more information about how Liquibase stores the data about already executed changeSets check out this question.