Uses of Enum Class
org.hibernate.tool.schema.Action
Packages that use Action
Package
Description
This package defines APIs for configuring Hibernate.
The packages in this namespace are responsible for implementing certain
requirements of the JPA specification, especially things which are only
needed when Hibernate is acting as a JPA persistence provider.
Contains tooling related to DDL generation, export, migration, and validation.
An SPI for tooling related to DDL generation, export, migration, and validation.
-
Uses of Action in org.hibernate.cfg
Methods in org.hibernate.cfg with parameters of type Action -
Uses of Action in org.hibernate.jpa
Methods in org.hibernate.jpa with parameters of type ActionModifier and TypeMethodDescriptionHibernatePersistenceConfiguration.schemaToolingAction(Action action) Specify the action to take in terms of automatic database schema tooling. -
Uses of Action in org.hibernate.tool.schema
Subclasses with type arguments of type Action in org.hibernate.tool.schemaModifier and TypeClassDescriptionenumEnumerates the actions that may be performed by the schema management tooling.Methods in org.hibernate.tool.schema that return ActionModifier and TypeMethodDescriptionstatic ActionAction.interpretHbm2ddlSetting(Object value) Interpret the value of the old-school Hibernate configuration property "hibernate.hbm2ddl.auto" as an instance ofAction.static ActionAction.interpretJpaSetting(Object value) Interpret the value of the JPA-standard configuration property "jakarta.persistence.schema-generation.database.action" or "jakarta.persistence.schema-generation.scripts.action" as an instance ofAction.static ActionReturns the enum constant of this class with the specified name.static Action[]Action.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of Action in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi that return ActionModifier and TypeMethodDescriptionSchemaManagementToolCoordinator.ActionGrouping.databaseAction()Returns the value of thedatabaseActionrecord component.static ActionSchemaManagementToolCoordinator.ActionGrouping.determineJpaDbActionSetting(Map<?, ?> configuration, String contributor, Action defaultValue) Exposed for testsstatic ActionSchemaManagementToolCoordinator.ActionGrouping.determineJpaScriptActionSetting(Map<?, ?> configuration, String contributor, Action defaultValue) Exposed for testsSchemaManagementToolCoordinator.ActionGrouping.getDatabaseAction()Deprecated, for removal: This API element is subject to removal in a future version.SchemaManagementToolCoordinator.ActionGrouping.getScriptAction()Deprecated, for removal: This API element is subject to removal in a future version.SchemaManagementToolCoordinator.ActionGrouping.scriptAction()Returns the value of thescriptActionrecord component.Methods in org.hibernate.tool.schema.spi with parameters of type ActionModifier and TypeMethodDescriptionstatic ActionSchemaManagementToolCoordinator.ActionGrouping.determineJpaDbActionSetting(Map<?, ?> configuration, String contributor, Action defaultValue) Exposed for testsstatic ActionSchemaManagementToolCoordinator.ActionGrouping.determineJpaScriptActionSetting(Map<?, ?> configuration, String contributor, Action defaultValue) Exposed for testsConstructors in org.hibernate.tool.schema.spi with parameters of type ActionModifierConstructorDescriptionActionGrouping(String contributor, Action databaseAction, Action scriptAction) Creates an instance of aActionGroupingrecord class.