Uses of Class
com.ads.api.beans.csm.CodeValue
Packages that use CodeValue
Package
Description
Contains Collection Classes,Java Bean Classes which are specific to Categories, Codesets, Code Values, Codeset Maps.
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 CodeValue in com.ads.api.beans.csm
Methods in com.ads.api.beans.csm that return CodeValueModifier and TypeMethodDescriptionCodeValue.addExtendedProperty(KeyValue keyValue) Returns CodeValue object by adding specified KeyValue object to the CodeValue object where KeyValue object contains details like key,value, objectId,objectTypeId etc....CodeValue.setExtendedProperties(List<KeyValue> extendedProperties) Returns the CodeValue object by setting the specified list of extendedProperties to the CodeValue objectMethods in com.ads.api.beans.csm that return types with arguments of type CodeValueModifier and TypeMethodDescriptionCodeset.getCodeValues()Returns the list of CodeValue objects where each codeValue Object contains details like codeName,codeValue,description etc...Methods in com.ads.api.beans.csm with parameters of type CodeValueModifier and TypeMethodDescriptionCodeset.addCodeValue(CodeValue codeValue) Returns the Codeset object by adding the specified CodeValue object to the codeValues list.Codeset.removeCodeValue(CodeValue codeValue) Returns the Codeset object by removing the specified CodeValue object from the codeValues list.Method parameters in com.ads.api.beans.csm with type arguments of type CodeValueModifier and TypeMethodDescriptionCodeset.addCodeValues(List<CodeValue> codeValues) Returns the codeset object by adding the specified list of CodeValue objects to the codeValues list.Codeset.setCodeValues(List<CodeValue> codeValues) Returns the codeset object by adding the specified list of CodeValue objects to the codeValues list. -
Uses of CodeValue in com.ads.api.beans.sm
Methods in com.ads.api.beans.sm that return types with arguments of type CodeValueModifier and TypeMethodDescriptionSMColumn.getValidValues()Returns the list of CodeValue objects.Methods in com.ads.api.beans.sm with parameters of type CodeValueMethod parameters in com.ads.api.beans.sm with type arguments of type CodeValueModifier and TypeMethodDescriptionvoidSMColumn.setValidValues(List<CodeValue> validValues) Method sets the CodeValue objects as specified. -
Uses of CodeValue in com.ads.api.util
Methods in com.ads.api.util that return types with arguments of type CodeValueModifier and TypeMethodDescriptionCodesetManagerUtil.getCodeValues(int codesetId) Returns the list of codevalue objects for the specified codesetId.CodesetManagerUtil.getCodeValues(int codesetId, int fillOptions) Returns the list of codevalue objects for the specified codesetId.CodesetManagerUtil.getCodeValues(int categoryId, String codesetName) Returns the list of codevalue objects for the specified categoryId and codesetName.CodesetManagerUtil.getCodeValues(int categoryId, String codesetName, int fillOptions) Returns the list of codevalue objects for the specified categoryId and codesetName.CodesetManagerUtil.getLogicallyDeletedCodeValues(int codesetId) Returns the list of logically deleted codevalue objects for the specified codesetId.CodesetManagerUtil.getValidValues(Node.NodeType nodeType, int nodeId) Returns the list of code value objects for the specified nodeId where each code value object contains code name, code value, code description and codeset name in which code value is present etc....CodesetManagerUtil.getValidValues(Node.NodeType nodeType, int nodeId, int fillOptions) Returns the list of codeValue objects for the specified nodeType and nodeId.SystemManagerUtil.getValidValues(int columnId) Deprecated.SystemManagerUtil.getValidValues(int columnId, int fillOptions) Deprecated.Methods in com.ads.api.util with parameters of type CodeValueModifier and TypeMethodDescriptionCodesetManagerUtil.addCodeValue(int codesetId, CodeValue codeValue, boolean saveExtendedProperties) Codevalue is added for the specified codesetId, codevalue object and also extended properties are added only if the saveExtendedProperties flag is true.CodesetManagerUtil.addCodeValue(CodeValue codeValue, boolean saveExtendedProperties) Codevalue is added for the specified codevalue object and also extended properties are added only if the saveExtendedProperties flag is true.CodesetManagerUtil.updateCodeValue(CodeValue codeValue) Updates codevalue for the code id specified in the codeValue object.CodesetManagerUtil.updateCodeValue(CodeValue codeValue, boolean updateExtendedProperties) Updates codevalue for the code id specified in the codevalue object and also updates its extended properties only if updateExtendedProperties flag is true.Method parameters in com.ads.api.util with type arguments of type CodeValueModifier and TypeMethodDescriptionCodesetManagerUtil.addCodeValues(int codesetId, List<CodeValue> codeValues, boolean saveExtendedProperties) Codevalues are added for the specified codesetId list of codevalue objects and also extended properties are added only if the saveExtendedProperties flag is true.CodesetManagerUtil.addCodeValues(List<CodeValue> codeValues, boolean saveExtendedProperties) Codevalues are added for the specified list of codevalue objects and also extended properties are added only if the saveExtendedProperties flag is true.CodesetManagerUtil.updateCodeValues(List<CodeValue> codeValues) Updates list of codevalues for the code id specified in the list of each codevalue object.CodesetManagerUtil.updateCodeValues(List<CodeValue> codeValues, boolean updateExtendedProperties) Updates list of codevalues for the code id specified in the each codevalue object and also updates its corresponding extended properties only if updateExtendedProperties flag is true.