当前位置: 首页>>代码示例>>Java>>正文


Java Item.getValueString方法代码示例

本文整理汇总了Java中lotus.domino.Item.getValueString方法的典型用法代码示例。如果您正苦于以下问题:Java Item.getValueString方法的具体用法?Java Item.getValueString怎么用?Java Item.getValueString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lotus.domino.Item的用法示例。


在下文中一共展示了Item.getValueString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: processItem

import lotus.domino.Item; //导入方法依赖的package包/类
private void processItem(Item item, String fieldName){
	Vector<?> values = null;

	try{
		
		//get out if item.type is unknown
		if("$FILE".equals(item.getName())){
			return;
		}
		
		values = item.getValues();
		
		String check = item.getValueString();
		if(check==null || "".equals(check) || fieldName.toLowerCase().contains("password")){
			return;
		}

		if(values!=null && !values.isEmpty()){

			if (values.size()==1){
				Object value =values.elementAt(0);
				if(value instanceof DateTime){
					DateTime dateTime = (DateTime) value;
					this.put(fieldName,dateTime.toJavaDate());
					
				}else if(value instanceof String){
					String data = (String) value;
					this.put(fieldName, data.trim());
					
				}else{
					this.put(fieldName, values.elementAt(0));
					
				}
			}else if(values.size() > 1){
				//if the values are of date time we need to convert.
				if(values.elementAt(0) instanceof DateTime){
					List<Date> list = this.convertToDateList(values);
					this.put(fieldName,list);
				}else{
					this.put(fieldName,values);
				}
			}
		}
	}catch(Exception n){
		logger.log(Level.SEVERE,"DocumentWrapper.field." + fieldName + " exception");
		logger.log(Level.SEVERE,null, n);
	}
}
 
开发者ID:mwambler,项目名称:xockets.io,代码行数:49,代码来源:DocumentWrapper.java


注:本文中的lotus.domino.Item.getValueString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。