Package com.ads.api.beans.sm
Enum Class SMTable.SMTableType
- All Implemented Interfaces:
Serializable,Comparable<SMTable.SMTableType>,Constable
- Enclosing class:
- SMTable
The constants of this enumerated type provides a simple classification of the declared elements.
These are used to specify the TableType such as Table, View, Synonym or
Component.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SMTable.SMTableTypegetSMTableType(String value) static SMTable.SMTableTypeReturns the enum constant of this class with the specified name.static SMTable.SMTableType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TABLE
TABLE specifies the table which is created is of a TABLE type. -
VIEW
VIEW specifies the table which is created is of a VIEW type.
VIEW is a stored query which provides only the read only access. -
SYNONYM
SYNONYM specifies the table which is created is of a SYNONYM type.
SYNONYM is the another name for an existing object which is used to access other schema without referencing the schema. -
COMPONENT
Component is name given to ETL program unit.
Component is an Independent entity which can represent as a Source, Transformation, Lookup, Staging , Destination Entity
-
-
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
-
getSMTableType
-