Uses of Class
org.teamapps.universaldb.index.ColumnType
-
Uses of ColumnType in org.teamapps.universaldb.index
Methods in org.teamapps.universaldb.index that return ColumnType Modifier and Type Method Description ColumnTypeAbstractIndex. getColumnType()ColumnTypeColumnIndex. getColumnType()static ColumnTypeColumnType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ColumnType[]ColumnType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.teamapps.universaldb.index with parameters of type ColumnType Modifier and Type Method Description voidTableIndex. addIndex(ColumnType type, java.lang.String name)static ColumnIndexColumnIndex. createColumn(TableIndex table, java.lang.String name, ColumnType columnType)Constructors in org.teamapps.universaldb.index with parameters of type ColumnType Constructor Description AbstractBufferIndex(java.lang.String name, TableIndex table, ColumnType columnType, FullTextIndexingOptions fullTextIndexingOptions)AbstractIndex(java.lang.String name, TableIndex table, ColumnType columnType, FullTextIndexingOptions fullTextIndexingOptions) -
Uses of ColumnType in org.teamapps.universaldb.index.binary
Constructors in org.teamapps.universaldb.index.binary with parameters of type ColumnType Constructor Description BinaryIndex(java.lang.String name, TableIndex table, boolean compressContent, ColumnType columnType) -
Uses of ColumnType in org.teamapps.universaldb.index.bool
Constructors in org.teamapps.universaldb.index.bool with parameters of type ColumnType Constructor Description BooleanIndex(java.lang.String name, TableIndex tableIndex, ColumnType columnType) -
Uses of ColumnType in org.teamapps.universaldb.index.file
Constructors in org.teamapps.universaldb.index.file with parameters of type ColumnType Constructor Description FileIndex(java.lang.String name, TableIndex table, ColumnType columnType, FullTextIndexingOptions fullTextIndexingOptions, CollectionTextSearchIndex collectionSearchIndex, FileStore fileStore) -
Uses of ColumnType in org.teamapps.universaldb.index.fileng
Constructors in org.teamapps.universaldb.index.fileng with parameters of type ColumnType Constructor Description FileIndex(java.lang.String name, TableIndex table, ColumnType columnType, boolean indexFileContent, boolean indexFileVersions, java.lang.String secret) -
Uses of ColumnType in org.teamapps.universaldb.index.numeric
Constructors in org.teamapps.universaldb.index.numeric with parameters of type ColumnType Constructor Description DoubleIndex(java.lang.String name, TableIndex table, ColumnType columnType)FloatIndex(java.lang.String name, TableIndex table, ColumnType columnType)IntegerIndex(java.lang.String name, TableIndex tableIndex, ColumnType columnType)LongIndex(java.lang.String name, TableIndex tableIndex, ColumnType columnType)ShortIndex(java.lang.String name, TableIndex tableIndex, ColumnType columnType) -
Uses of ColumnType in org.teamapps.universaldb.index.reference.multi
Constructors in org.teamapps.universaldb.index.reference.multi with parameters of type ColumnType Constructor Description MultiReferenceIndex(java.lang.String name, TableIndex table, ColumnType columnType, ReferenceBlockChain referenceBlockChain) -
Uses of ColumnType in org.teamapps.universaldb.index.reference.single
Constructors in org.teamapps.universaldb.index.reference.single with parameters of type ColumnType Constructor Description SingleReferenceIndex(java.lang.String name, TableIndex tableIndex, ColumnType columnType) -
Uses of ColumnType in org.teamapps.universaldb.index.text
Constructors in org.teamapps.universaldb.index.text with parameters of type ColumnType Constructor Description TextIndex(java.lang.String name, TableIndex table, ColumnType columnType, boolean withLocalSearchIndex)TextIndex(java.lang.String name, TableIndex table, ColumnType columnType, CollectionTextSearchIndex collectionSearchIndex) -
Uses of ColumnType in org.teamapps.universaldb.index.translation
Constructors in org.teamapps.universaldb.index.translation with parameters of type ColumnType Constructor Description TranslatableTextIndex(java.lang.String name, TableIndex table, ColumnType columnType, boolean withLocalSearchIndex)TranslatableTextIndex(java.lang.String name, TableIndex table, ColumnType columnType, CollectionTextSearchIndex collectionSearchIndex) -
Uses of ColumnType in org.teamapps.universaldb.pojo.template
Methods in org.teamapps.universaldb.pojo.template with parameters of type ColumnType Modifier and Type Method Description java.lang.StringPojoTemplate. getFilterTypeName(ColumnType type)java.lang.StringPojoTemplate. getIndexTypeName(ColumnType type) -
Uses of ColumnType in org.teamapps.universaldb.schema
Methods in org.teamapps.universaldb.schema that return ColumnType Modifier and Type Method Description ColumnTypeColumn. getType()Methods in org.teamapps.universaldb.schema with parameters of type ColumnType Modifier and Type Method Description ColumnTable. addColumn(java.lang.String name, ColumnType columnType)Constructors in org.teamapps.universaldb.schema with parameters of type ColumnType Constructor Description Column(Table table, java.lang.String name, ColumnType type)