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

javadoc cleanup

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