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


Java NodeMap.get方法代码示例

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


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

示例1: read

import org.simpleframework.xml.stream.NodeMap; //导入方法依赖的package包/类
public Car read(InputNode node) throws Exception {
   Car car = persister.read(Car.class, node, false);
   NodeMap<InputNode> attributes = node.getAttributes();
   
   for(String name : attributes) {
      InputNode attribute = attributes.get(name);
      String value = attribute.getValue();
      
      car.furtherAttributes.put(name, value);
   }
   return car;
}
 
开发者ID:ngallagher,项目名称:simplexml,代码行数:13,代码来源:DynamicMapOfAttributesTest.java

示例2: read

import org.simpleframework.xml.stream.NodeMap; //导入方法依赖的package包/类
public Value read(Type type, NodeMap<InputNode> node, Map map) throws Exception {
   Component component = type.getAnnotation(Component.class);
   
   if(component != null) {
      String name = component.name();
      InputNode value = node.get(KEY);
      
      if(!value.getValue().equals(name)) {
         throw new IllegalStateException("Component name incorrect, expected '"+name+"' but was '"+value.getValue()+"'");
      }
   }
   return strategy.read(type, node, map);
}
 
开发者ID:ngallagher,项目名称:simplexml,代码行数:14,代码来源:AnnotationTypeTest.java

示例3: read

import org.simpleframework.xml.stream.NodeMap; //导入方法依赖的package包/类
public void read(Type type, NodeMap<InputNode> node) throws Exception {
   InputNode value = node.get("type");
   System.out.println(value);
}
 
开发者ID:ngallagher,项目名称:simplexml,代码行数:5,代码来源:ElementsStrategyCallbackTest.java


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