Package com.ads.mm.xml.erwin
Enum Class ERWinBase.ColumnProperties
- All Implemented Interfaces:
Serializable,Comparable<ERWinBase.ColumnProperties>,Constable
- Enclosing class:
- ERWinBase
These constants specifies the ColumnProperties such as DATATYPE, LENGTH, PRECISION and SCALE.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDATATYPE is the column property which specifies the type of the data a column holds.LENGTH is the column property which specifies the length of data the specific column can allow to hold.PRECISION is the column property which specifies the number of significant digits.SCALE is the column property which specifies the number of digits to the right of the decimal point. -
Method Summary
Modifier and TypeMethodDescriptionstatic ERWinBase.ColumnPropertiesReturns the enum constant of this class with the specified name.static ERWinBase.ColumnProperties[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DATATYPE
DATATYPE is the column property which specifies the type of the data a column holds. Datatype defines particular characteristics of data. -
LENGTH
LENGTH is the column property which specifies the length of data the specific column can allow to hold. -
PRECISION
PRECISION is the column property which specifies the number of significant digits. Precision is the refinement in a measurement, calculation, or specification, especially as represented by the number of digits given. -
SCALE
SCALE is the column property which specifies the number of digits to the right of the decimal point.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-