Uses of Class
com.ads.api.beans.sm.SMIndex
Packages that use SMIndex
Package
Description
Contains Collection Classes,Java Bean Classes which are specific to System, Environment,Table, Column and Node.
Contains Utility Classes, Collection Classes, Java Bean Classes which are specific to System, Environment, Table, Column, Mappings, Subject,
KeyValue Pairs, ROle, Business Glossary Catalog, Document etc...
-
Uses of SMIndex in com.ads.api.beans.sm
Methods in com.ads.api.beans.sm that return types with arguments of type SMIndexModifier and TypeMethodDescriptionSMColumn.getColumnIndexes()This method returns null on getColumn calls from SMUtil unless its being loaded as a complete networkSMTable.getColumnIndexes()Returns the list of columnIndexes objects.Methods in com.ads.api.beans.sm with parameters of type SMIndexModifier and TypeMethodDescriptionSMColumn.addColumnIndex(SMIndex columnIndex) Method adds the columnIndex as specified.Method parameters in com.ads.api.beans.sm with type arguments of type SMIndexModifier and TypeMethodDescriptionSMColumn.setColumnIndexes(List<SMIndex> columnIndexes) Method sets the columnIndexes as specified.SMTable.setColumnIndexes(List<SMIndex> columnIndexes) Method sets the list of columnIndexes as specified. -
Uses of SMIndex in com.ads.api.util
Methods in com.ads.api.util that return SMIndexModifier and TypeMethodDescriptionSystemManagerUtil.getIndex(int indexId) Returns SMIndex Object for the specified indexId.SystemManagerUtil.getIndex(int indexId, int fillOptions) Returns SMIndex Object for the specified indexId.Specifying the indexId is mandatory.Returns SMIndex Object for the specified tableId and indexName.Returns SMIndex Object for the specified tableId and indexName.SystemManagerUtil.getIndex(Node.NodeType nodeType, int nodeId, String indexName) Returns SMIndex object for the specified nodeId of nodeType and indexName.SystemManagerUtil.getIndex(Node.NodeType nodeType, int nodeId, String indexName, int fillOptions) Returns SMIndex object for the specified nodeId of nodeType and indexName.Methods in com.ads.api.util that return types with arguments of type SMIndexModifier and TypeMethodDescriptionSystemManagerUtil.getIndexes(int tableId) Returns list of SMIndex Objects for the specified tableId.SystemManagerUtil.getIndexes(int tableId, int fillOptions) Returns list of SMIndex Objects for the specified tableId.SystemManagerUtil.getIndexes(Node.NodeType nodeType, int nodeId) Returns the list of SMIndex objects for the specified nodeId of nodeType.SystemManagerUtil.getIndexes(Node.NodeType nodeType, int nodeId, int fillOptions) Returns the list of SMIndex objects for the specified nodeId of nodeType.Methods in com.ads.api.util with parameters of type SMIndexModifier and TypeMethodDescriptionInserts a new index for the specified columnId and the specified SMIndex object should contain all the details pertaining to index such as index name which is mandatory, type,owner etc..Inserts a new index for the specified SMIndex Object.SystemManagerUtil.deleteIndex(SMIndex index) Removes index for the specified SMIndex object.SystemManagerUtil.updateIndex(SMIndex index) Updates the index for the specified SMIndex object.Method parameters in com.ads.api.util with type arguments of type SMIndexModifier and TypeMethodDescriptionSystemManagerUtil.addIndexes(int columnId, List<SMIndex> indexes) Inserts list of indexes for the specified columnId where in each SMIndex object should contain index name.SystemManagerUtil.addIndexes(List<SMIndex> indexes) Inserts List of indexes for the specified SMIndex Objects.Each SMIndex object should contain all the details pertaining to index such as index name,type,owner etc...where index name is mandatory and SMIndex object should also contain either column object or list of column objects to which the index need to be added where in columnId is mandatory in each column object.SystemManagerUtil.deleteIndexes(List<SMIndex> indexes) Removes indexes for the specified list of SMIndex objects.SystemManagerUtil.updateIndexes(List<SMIndex> indexes) Updates the List of indexes for the specified SMIndex Objects.