📄 flushmodetype.java
字号:
package org.hibernate.annotations;/** * Enumeration extending javax.persistence flush modes. * * @author Carlos Gonz醠ez-Cadenas */public enum FlushModeType { /** * see {@link org.hibernate.FlushMode.ALWAYS} */ ALWAYS, /** * see {@link org.hibernate.FlushMode.AUTO} */ AUTO, /** * see {@link org.hibernate.FlushMode.COMMIT} */ COMMIT, /** * see {@link org.hibernate.FlushMode.NEVER} * @deprecated use MANUAL, will be removed in a subsequent release */ NEVER, /** * see {@link org.hibernate.FlushMode.MANUAL} */ MANUAL, /** * Current flush mode of the persistence context at the time the query is executed */ PERSISTENCE_CONTEXT}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -