Interface SizeSource
-
public interface SizeSource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Integer
getLength()
The specified length.java.lang.Integer
getPrecision()
The specified precision.java.lang.Integer
getScale()
The specified scale.
-
-
-
Method Detail
-
getLength
java.lang.Integer getLength()
The specified length. Will returnnull
if none was specified.- Returns:
- The length, or
null
if not defined.
-
getPrecision
java.lang.Integer getPrecision()
The specified precision. Will returnnull
if none was specified.- Returns:
- The precision, or
null
if not defined.
-
getScale
java.lang.Integer getScale()
The specified scale. Will returnnull
if none was specified.- Returns:
- The scale, or
null
if not defined.
-
-