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


Java PosOrPointPropertyOrPointRep.isSetPos方法代码示例

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


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

示例1: marshalLineStringSegment

import org.citygml4j.model.gml.geometry.primitives.PosOrPointPropertyOrPointRep; //导入方法依赖的package包/类
public LineStringSegmentType marshalLineStringSegment(LineStringSegment src) {
	LineStringSegmentType dest = gml.createLineStringSegmentType();
	marshalAbstractCurveSegment(src, dest);

	if (src.isSetInterpolation())
		dest.setInterpolation(marshalCurveInterpolation(src.getInterpolation()));

	if (src.isSetPosList())
		dest.setPosList(marshalDirectPositionList(src.getPosList()));

	if (src.isSetCoordinates())
		dest.setCoordinates(marshalCoordinates(src.getCoordinates()));

	if (src.isSetPosOrPointPropertyOrPointRep()) {
		for (PosOrPointPropertyOrPointRep item : src.getPosOrPointPropertyOrPointRep()) {
			if (item.isSetPos())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPos()));
			else if (item.isSetPointProperty())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPointProperty()));
			else if (item.isSetPointRep())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPointRep()));
		}
	}

	return dest;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:27,代码来源:GMLMarshaller.java

示例2: marshalLinearRing

import org.citygml4j.model.gml.geometry.primitives.PosOrPointPropertyOrPointRep; //导入方法依赖的package包/类
public LinearRingType marshalLinearRing(LinearRing src) {
	LinearRingType dest = gml.createLinearRingType();
	marshalAbstractRing(src, dest);

	if (src.isSetPosList())
		dest.setPosList(marshalDirectPositionList(src.getPosList()));

	if (src.isSetCoordinates())
		dest.setCoordinates(marshalCoordinates(src.getCoordinates()));

	if (src.isSetCoord()) {
		for (Coord coord : src.getCoord())
			dest.getCoord().add(marshalCoord(coord));
	}

	if (src.isSetPosOrPointPropertyOrPointRep()) {
		for (PosOrPointPropertyOrPointRep item : src.getPosOrPointPropertyOrPointRep()) {
			if (item.isSetPos())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPos()));
			else if (item.isSetPointProperty())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPointProperty()));
			else if (item.isSetPointRep())
				dest.getPosOrPointPropertyOrPointRep().add(marshalJAXBElement(item.getPointRep()));
		}
	}

	return dest;
}
 
开发者ID:citygml4j,项目名称:citygml4j,代码行数:29,代码来源:GMLMarshaller.java


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