本文整理汇总了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;
}
示例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);
}
示例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);
}