accesscallback.java
来自「一个Java持久层类库」· Java 代码 · 共 17 行
JAVA
17 行
package org.hibernate.id.enhanced;
/**
* Contract for providing callback access to a {@link DatabaseStructure},
* typically from the {@link Optimizer}.
*
* @author Steve Ebersole
*/
public interface AccessCallback {
/**
* Retrieve the next value from the underlying source.
*
* @return The next value.
*/
public long getNextValue();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?