本文整理了Java中org.geotools.xsd.Node.hasChild()
方法的一些代码示例,展示了Node.hasChild()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.hasChild()
方法的具体详情如下:
包路径:org.geotools.xsd.Node
类名称:Node
方法名:hasChild
[英]Determines if the node has a child whose value is of the specified class.
[中]确定节点是否有值属于指定类的子节点。
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
// <xsd:element ref="ogc:EID"/>
boolean eid = node.hasChild("EID");
// <xsd:element ref="ogc:FID"/>
boolean fid = node.hasChild("FID");
return factory.idCapabilities(eid, fid);
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
// <xsd:element ref="ogc:Simple_Arithmetic"/>
boolean simpleArithmetic =
node.hasChild("Simple_Arithmetic") || node.hasChild("SimpleArithmetic"); // 1.1
// <xsd:element name="Functions" type="ogc:FunctionsType"/>
Functions functions = (Functions) node.getChildValue(Functions.class);
return factory.arithmeticOperators(simpleArithmetic, functions);
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Color color = null;
if (node.hasChild(Color.class)) {
color = (Color) node.getChildValue(Color.class);
} else {
color = Color.WHITE;
}
return color;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
ArrayList points = new ArrayList();
if (node.hasChild(Point.class)) {
points.addAll(node.getChildValues(Point.class));
}
if (node.hasChild(Point[].class)) {
Point[] p = (Point[]) node.getChildValue(Point[].class);
for (int i = 0; i < p.length; i++) points.add(p[i]);
}
return gFactory.createMultiPoint((Point[]) points.toArray(new Point[points.size()]));
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
ArrayList geometries = new ArrayList();
if (node.hasChild(Geometry.class)) {
geometries.addAll(node.getChildValues(Geometry.class));
}
if (node.hasChild(Geometry[].class)) {
Geometry[] g = (Geometry[]) node.getChildValue(Geometry[].class);
for (int i = 0; i < g.length; i++) geometries.add(g[i]);
}
return factory.createGeometryCollection(
(Geometry[]) geometries.toArray(new Geometry[geometries.size()]));
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
// <xsd:element ref="ogc:Logical_Operators"/>
boolean logical =
node.hasChild("Logical_Operators") || node.hasChild("LogicalOperators"); /* 1.1 */
// <xsd:element name="Comparison_Operators" type="ogc:Comparison_OperatorsType"/>
ComparisonOperators comparison =
(ComparisonOperators) node.getChildValue(ComparisonOperators.class);
// <xsd:element name="Arithmetic_Operators" type="ogc:Arithmetic_OperatorsType"/>
ArithmeticOperators arithmetic =
(ArithmeticOperators) node.getChildValue(ArithmeticOperators.class);
return factory.scalarCapabilities(comparison, arithmetic, logical);
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
// <element maxOccurs="unbounded" minOccurs="0" ref="gml:surfaceMember"/>
List surfaces = node.getChildValues(Polygon.class);
// <element minOccurs="0" ref="gml:surfaceMembers"/>
if (node.hasChild(Polygon[].class)) {
surfaces.addAll(Arrays.asList((Polygon[]) node.getChildValue(Polygon[].class)));
}
return gf.createMultiPolygon((Polygon[]) surfaces.toArray(new Polygon[surfaces.size()]));
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
FeatureTypeStyle fts = (FeatureTypeStyle) super.parse(instance, node, value);
if (node.hasChild("CoverageName")) {
QName name = (QName) node.getChildValue("CoverageName");
fts.setFeatureTypeName(
name.getPrefix() != null
? name.getPrefix() + ":" + name.getLocalPart()
: name.getLocalPart());
}
return fts;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Expression offset = null;
if (node.hasChild("PerpendicularOffset")) {
offset = (Expression) node.getChildValue("PerpendicularOffset");
}
return styleFactory.createLinePlacement(offset);
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* Surprised we actually have something to do: namely collapse multiple fid filters using AND
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
if (node.hasChild("FeatureId")) {
// round up into a featureId filter
HashSet fids = new HashSet();
fids.addAll(node.getChildValues("FeatureId"));
return factory.id(fids);
}
return node.getChildValue(Filter.class);
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
LinearRing outer = (LinearRing) node.getChildValue("outerBoundaryIs");
LinearRing[] inner = null;
if (node.hasChild("innerBoundaryIs")) {
List l = node.getChildValues("innerBoundaryIs");
inner = (LinearRing[]) l.toArray(new LinearRing[l.size()]);
}
return geometryFactory.createPolygon(outer, inner);
}
代码示例来源:origin: geotools/geotools
@Override
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Graphic g = (Graphic) super.parse(instance, node, value);
if (node.hasChild(AnchorPoint.class)) {
g.setAnchorPoint((AnchorPoint) node.getChildValue(AnchorPoint.class));
}
if (node.hasChild(Displacement.class)) {
g.setDisplacement((Displacement) node.getChildValue(Displacement.class));
}
return g;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
// TODO: schema allows no exterior ring, but what the heck is that all about ?
LinearRing exterior = (LinearRing) node.getChildValue("exterior");
LinearRing[] interior = null;
if (node.hasChild("interior")) {
List list = node.getChildValues("interior");
interior = (LinearRing[]) list.toArray(new LinearRing[list.size()]);
}
return gFactory.createPolygon(exterior, interior);
}
代码示例来源:origin: geotools/geotools
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Graphic g = (Graphic) super.parse(instance, node, value);
// <xsd:element minOccurs="0" ref="se:InitialGap"/>
if (node.hasChild("InitialGap")) {
g.setInitialGap((Expression) node.getChildValue("InitialGap"));
}
// <xsd:element minOccurs="0" ref="se:Gap"/>
if (node.hasChild("Gap")) {
g.setGap((Expression) node.getChildValue("Gap"));
}
return g;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
LineSymbolizer sym = (LineSymbolizer) super.parse(instance, node, value);
// <xsd:element minOccurs="0" ref="se:PerpendicularOffset"/>
if (node.hasChild("PerpendicularOffset")) {
sym.setPerpendicularOffset((Expression) node.getChildValue("PerpendicularOffset"));
}
return sym;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Rule rule = (Rule) super.parse(instance, node, value);
// <xsd:element minOccurs="0" ref="se:Description"/>
if (node.hasChild("Description")) {
rule.setDescription((Description) node.getChildValue("Description"));
}
return rule;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
ExternalGraphic g;
if (node.hasChild("InlineContent")) {
String format = (String) node.getChildValue("Format");
Icon icon = (Icon) node.getChildValue("InlineContent");
g = styleFactory.createExternalGraphic(icon, format);
} else {
g = (ExternalGraphic) super.parse(instance, node, value);
}
return g;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
FeatureTypeStyle fts = (FeatureTypeStyle) super.parse(instance, node, value);
if (node.hasChild("Description")) {
Description d = (Description) node.getChildValue("Description");
fts.getDescription().setTitle(d.getTitle());
fts.getDescription().setAbstract(d.getAbstract());
}
return fts;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
Style style = (Style) super.parse(instance, node, value);
if (node.hasChild("Description")) {
Description desc = (Description) node.getChildValue("Description");
style.getDescription().setAbstract(desc.getAbstract());
style.getDescription().setTitle(desc.getTitle());
}
// TODO: OnlineResource
return style;
}
}
代码示例来源:origin: geotools/geotools
/**
*
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated modifiable
*/
public Object parse(ElementInstance instance, Node node, Object value) throws Exception {
NamedStyle style = (NamedStyle) super.parse(instance, node, value);
if (node.hasChild("Description")) {
Description desc = (Description) node.getChildValue("Description");
style.getDescription().setAbstract(desc.getAbstract());
style.getDescription().setTitle(desc.getTitle());
}
return style;
}
}
内容来源于网络,如有侵权,请联系作者删除!