Package com.exasol.datatype.type
Class AbstractStringDataType<T extends AbstractStringDataType<T>>
- java.lang.Object
-
- com.exasol.datatype.type.AbstractStringDataType<T>
-
- Type Parameters:
T- classes extendedAbstractStringDataType
- All Implemented Interfaces:
DataType
public abstract class AbstractStringDataType<T extends AbstractStringDataType<T>> extends Object implements DataType
Implements common logic for String data types.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractStringDataType(int length, int maxLength, String name)Create a new common base for a string type.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description intgetLength()StringgetName()protected abstract Tself()Get the generic self pointer.
-
-
-
Constructor Detail
-
AbstractStringDataType
protected AbstractStringDataType(int length, int maxLength, String name)Create a new common base for a string type.- Parameters:
length- length of the stringmaxLength- maximum lengthname- name of the type
-
-