Uses of Class
org.hibernate.tool.schema.Action
-
Packages that use Action Package Description org.hibernate.tool.schema Contains tooling related to DDL generation, export, migration, and validation.org.hibernate.tool.schema.spi An SPI for the tooling related to DDL generation, export, migration, and validation. -
-
Uses of Action in org.hibernate.tool.schema
Methods in org.hibernate.tool.schema that return Action Modifier and Type Method Description static Action
Action. interpretHbm2ddlSetting(Object value)
Used to interpret the value of "hibernate.hbm2ddl.auto"static Action
Action. interpretJpaSetting(Object value)
Used when processing JPA configuration to interpret the user config values.static Action
Action. valueOf(String name)
Returns the enum constant of this type with the specified name.static Action[]
Action. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Action in org.hibernate.tool.schema.spi
Methods in org.hibernate.tool.schema.spi that return Action Modifier and Type Method Description static Action
SchemaManagementToolCoordinator.ActionGrouping. determineAutoSettingImpliedAction(Map<?,?> settings, String contributor, Action defaultValue)
static Action
SchemaManagementToolCoordinator.ActionGrouping. determineJpaDbActionSetting(Map<?,?> configurationValues, String contributor, Action defaultValue)
Exposed for testsstatic Action
SchemaManagementToolCoordinator.ActionGrouping. determineJpaScriptActionSetting(Map<?,?> configurationValues, String contributor, Action defaultValue)
Exposed for testsAction
SchemaManagementToolCoordinator.ActionGrouping. getDatabaseAction()
Action
SchemaManagementToolCoordinator.ActionGrouping. getScriptAction()
Methods in org.hibernate.tool.schema.spi with parameters of type Action Modifier and Type Method Description static Action
SchemaManagementToolCoordinator.ActionGrouping. determineAutoSettingImpliedAction(Map<?,?> settings, String contributor, Action defaultValue)
static Action
SchemaManagementToolCoordinator.ActionGrouping. determineJpaDbActionSetting(Map<?,?> configurationValues, String contributor, Action defaultValue)
Exposed for testsstatic Action
SchemaManagementToolCoordinator.ActionGrouping. determineJpaScriptActionSetting(Map<?,?> configurationValues, String contributor, Action defaultValue)
Exposed for testsConstructors in org.hibernate.tool.schema.spi with parameters of type Action Constructor Description ActionGrouping(String contributor, Action databaseAction, Action scriptAction)
-