Uses of Class
com.ca.commons.datamodel.DataModelValue

Packages that use DataModelValue
com.ca.commons.datamodel Data modelling library with metadata support. 
com.ca.commons.datamodel.cfg   
com.ca.commons.datamodel.standard The original "standard" implementation of the Data Model API. 
com.ca.jcs.cfg Collection of classes used to configure the JCS and its contained components. 
com.ca.jcs.converter.eval   
com.ca.jcs.meta Contains components which are metadata driven or assist in the condensing of information derived from metadata to allow efficient processing. 
com.ca.jcs.validator.eval   
com.ca.jcs.validator.meta   
 

Uses of DataModelValue in com.ca.commons.datamodel
 

Fields in com.ca.commons.datamodel with type parameters of type DataModelValue
static com.ca.commons.functional.Fn<DataModelProperty,DataModelValue> DataModelUtil.fnGetValue
           
 

Methods in com.ca.commons.datamodel that return DataModelValue
 DataModelValue DataModelValue.changeValue(Object newValue)
           
 DataModelValue DataModelValue.copy()
           
 DataModelValue DataModelMapValue.get(DataModelValue key)
           
 DataModelValue DataModelCollectionValue.getBaseValue()
           
 DataModelValue DataModelMapValue.getKeyType()
           
 DataModelValue DataModelValue.getNestedValue()
          Return "this" for simple (non-collection) values, otherwise return the basetype for the collection.
 DataModelValue DataModelProperty.getValue()
           
 DataModelValue DataModelMapValue.getValueType()
           
static DataModelValue DataModelValue.newBooleanValue(boolean b)
           
 DataModelValue DataModelEditor.newEnumValue(String dataTypeStr, String[] values, String defaultValue)
          Returns value initialized to parent enum def containing provided values, where dataTypeStr has a value of the form "ENUM:PARENT".
static DataModelValue DataModelValue.newIntValue(int i)
           
static DataModelValue DataModelValue.newStringValue(String s)
           
 DataModelValue DataModelEditor.newValue(String dataTypeStr, String defaultValue)
          Factory method that returns a value matching symbolic name like "STR", "FLEXI_STR:DN", "ENUM:DAYS_OF_WEEK", with optional defaultValue.
 

Methods in com.ca.commons.datamodel that return types with arguments of type DataModelValue
static com.ca.commons.functional.Pred<DataModelValue> DataModelValue.fnIsType(DataModelType dmType)
           
static
<T> com.ca.commons.functional.Fn<DataModelValue,com.ca.commons.functional.Option<T>>
DataModelValue.fnValue(Class<? extends T> type)
           
static Map<DataModelValue,DataModelValue> DataModelUtil.getItemPropertyMapValues(DataModelItem item, String propName)
          Get values contained in a data model map as Map of DataModelValue,DataModelValue pairs
static Map<DataModelValue,DataModelValue> DataModelUtil.getItemPropertyMapValues(DataModelItem item, String propName)
          Get values contained in a data model map as Map of DataModelValue,DataModelValue pairs
static Map<DataModelValue,DataModelValue> DataModelUtil.getMapValues(DataModelValue value)
          Get values contained in a data model map as Map of DataModelValue,DataModelValue pairs
static Map<DataModelValue,DataModelValue> DataModelUtil.getMapValues(DataModelValue value)
          Get values contained in a data model map as Map of DataModelValue,DataModelValue pairs
 Collection<DataModelValue> DataModelValue.getSeq()
           
 Collection<DataModelValue> DataModelValue.getSet()
           
 Map<DataModelValue,DataModelValue> DataModelMapValue.getValues()
          Returns an immutable map of String / DataModelValue pairs.
 Map<DataModelValue,DataModelValue> DataModelMapValue.getValues()
          Returns an immutable map of String / DataModelValue pairs.
 Collection<DataModelValue> DataModelCollectionValue.getValues()
          Returns collection of DataModelValues which can be used to clear etc, but shouldn't be used to add new values.
 Iterator<DataModelValue> DataModelCollectionValue.iterator()
           
 com.ca.commons.functional.Option<DataModelValue> HasMetadata.mdValue(String mdName)
           
static com.ca.commons.functional.Fn<Object,DataModelValue> DataModelValue.valueMaker(DataModelType dataModelType)
           
 

Methods in com.ca.commons.datamodel with parameters of type DataModelValue
 DataModelValue DataModelMapValue.get(DataModelValue key)
           
static String[] DataModelUtil.getCollectionValues(DataModelValue value)
          Get values contained in a collection, as an array.
static Map<DataModelValue,DataModelValue> DataModelUtil.getMapValues(DataModelValue value)
          Get values contained in a data model map as Map of DataModelValue,DataModelValue pairs
 void DataModelProperty.setValue(DataModelValue value)
           
 

Method parameters in com.ca.commons.datamodel with type arguments of type DataModelValue
 DataModelCollectionValue DataModelCollectionValue.changeValue(Collection<? extends DataModelValue> values)
           
 

Constructors in com.ca.commons.datamodel with parameters of type DataModelValue
DataModelCollectionValue(boolean ordered, DataModelValue baseValue, Collection<? extends DataModelValue> values)
           
DataModelMapValue(DataModelValue keyType, DataModelValue valueType, Map<? extends DataModelValue,? extends DataModelValue> values)
           
 

Constructor parameters in com.ca.commons.datamodel with type arguments of type DataModelValue
DataModelCollectionValue(boolean ordered, DataModelValue baseValue, Collection<? extends DataModelValue> values)
           
DataModelMapValue(DataModelValue keyType, DataModelValue valueType, Map<? extends DataModelValue,? extends DataModelValue> values)
           
DataModelMapValue(DataModelValue keyType, DataModelValue valueType, Map<? extends DataModelValue,? extends DataModelValue> values)
           
 

Uses of DataModelValue in com.ca.commons.datamodel.cfg
 

Methods in com.ca.commons.datamodel.cfg that return DataModelValue
 DataModelValue MetaDataUsageInfo.getDataValue()
           
 DataModelValue[] MetaDataUsageInfo.getTargetAttributeType()
           
 

Methods in com.ca.commons.datamodel.cfg with parameters of type DataModelValue
 void MetaDataUsageInfo.setDataValue(DataModelValue dataValue)
           
 void MetaDataUsageInfo.setTargetAttributeType(DataModelValue[] targetAttributeType)
           
 

Uses of DataModelValue in com.ca.commons.datamodel.standard
 

Methods in com.ca.commons.datamodel.standard that return DataModelValue
 DataModelValue DataModelBuilderImpl.convertValueFromXML(com.ca.commons.datamodel.standard.DataModelNamespaceImpl ns, SimpleValue xmlType)
           
 DataModelValue DataModelEditorImpl.newEnumValue(String parentEnum, String[] values, String defaultValue)
          Returns value initialized to entry matching defaultValue in parent enum def containing provided values.
 DataModelValue DataModelEditorImpl.newValue(String dataTypeStr, String defaultValue)
          Factory method that returns a value matching symbolic name like "STR", "FLEXI_STR:DN", "ENUM:DAYS_OF_WEEK", with optional defaultValue.
 

Uses of DataModelValue in com.ca.jcs.cfg
 

Methods in com.ca.jcs.cfg with parameters of type DataModelValue
 boolean MetaPluginConfig.isApplicableToType(DataModelValue val)
           
 

Uses of DataModelValue in com.ca.jcs.converter.eval
 

Methods in com.ca.jcs.converter.eval with parameters of type DataModelValue
 AttributeConverter DefaultConverterManager.createValueConverter(DataModelValue value)
           
 AttributeConverter ConverterManager.createValueConverter(DataModelValue value)
          Handle creating an attribute validator based on property type.
 

Uses of DataModelValue in com.ca.jcs.meta
 

Methods in com.ca.jcs.meta that return DataModelValue
 DataModelValue MetaObjectClassMapping.getConnectorMetaDataValue(String connAttrId, String mdPropName)
          Utility method which returns the value of the mdPropName for the datamodel property associated with attribute connAttrId (which is the connector-speak version of the attribute name).
 

Uses of DataModelValue in com.ca.jcs.validator.eval
 

Methods in com.ca.jcs.validator.eval with parameters of type DataModelValue
 AttributeValidator ValidatorManager.createValueValidator(DataModelValue value)
          Handle creating an attribute validator based on property type.
 AttributeValidator DefaultValidatorManager.createValueValidator(DataModelValue value)
          Handle creating an attribute validator based on property type (only enums need special handling currently, other types are looked up in the configured typeToAttrValidatorMap map).
 AttributeValidator DefaultValidatorManager.getTypeAttributeValidator(DataModelValue val)
          Lookup AttributeValidator given type string
 

Uses of DataModelValue in com.ca.jcs.validator.meta
 

Constructors in com.ca.jcs.validator.meta with parameters of type DataModelValue
EnumValueValidator(DataModelValue val)
           
 



Created 2011-07-14 13:27 EST