提交 78f65eb0 authored 作者: tledkov's avatar tledkov

javadoc cleanup

上级 2bfc1fe3
......@@ -43,7 +43,7 @@ public class SequenceOptions {
* Gets start value.
*
* @param session The session to calculate the value.
* @return start value.
* @return start value or null if value is not defined.
*/
public Long getStartValue(Session session) {
return getLong(session, start);
......@@ -62,7 +62,7 @@ public class SequenceOptions {
* Gets increment value.
*
* @param session The session to calculate the value.
* @return increment value.
* @return increment value or null if value is not defined.
*/
public Long getIncrement(Session session) {
return getLong(session, increment);
......@@ -128,7 +128,7 @@ public class SequenceOptions {
/**
* Gets cycle flag.
*
* @return cycle flag value.
* @return cycle flag value or null if value is not defined.
*/
public Boolean getCycle() {
return cycle;
......@@ -147,7 +147,7 @@ public class SequenceOptions {
* Gets cache size.
*
* @param session The session to calculate the value.
* @return cache size.
* @return cache size or null if value is not defined.
*/
public Long getCacheSize(Session session) {
return getLong(session, cacheSize);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论