Package com.sas.lsaf.query
Enum Class Column.Type
- All Implemented Interfaces:
Serializable,Comparable<Column.Type>,Constable
- Enclosing class:
Column
The type of column to query.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe data type for the column is a boolean.The data type for the column is a date.The data type for the column is an enumeration of ordinal values.The data type for the column is an integer.The data type for the column is a long.The data type for the column is a string. -
Method Summary
Modifier and TypeMethodDescriptionstatic Column.TypeReturns the enum constant of this class with the specified name.static Column.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BOOLEAN
The data type for the column is a boolean. -
STRING
The data type for the column is a string. -
LONG
The data type for the column is a long. This numeric value can be any validlongvalue between -263 and 263-1. -
INTEGER
The data type for the column is an integer. -
DATE
The data type for the column is a date. For a column of this type, the value must be a long. -
ENUM
The data type for the column is an enumeration of ordinal values.
-
-
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
-