热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

net.opengis.gml.x32.FeaturePropertyType.isNil()方法的使用及代码示例

本文整理了Java中net.opengis.gml.x32.FeaturePropertyType.isNil()方法的一些代码示例,展示了FeatureP

本文整理了Java中net.opengis.gml.x32.FeaturePropertyType.isNil()方法的一些代码示例,展示了FeaturePropertyType.isNil()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FeaturePropertyType.isNil()方法的具体详情如下:
包路径:net.opengis.gml.x32.FeaturePropertyType
类名称:FeaturePropertyType
方法名:isNil

FeaturePropertyType.isNil介绍

暂无

代码示例

代码示例来源:origin: org.n52.sensorweb/52n-xml-sampling-v20

/**
* Tests for nil ith "sampledFeature" element
*/
public boolean isNilSampledFeatureArray(int i)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.FeaturePropertyType target = null;
target = (net.opengis.gml.x32.FeaturePropertyType)get_store().find_element_user(SAMPLEDFEATURE$2, i);
if (target == null)
{
throw new IndexOutOfBoundsException();
}
return target.isNil();
}
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-om-v20

/**
* Tests for nil "featureOfInterest" element
*/
public boolean isNilFeatureOfInterest()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.FeaturePropertyType target = null;
target = (net.opengis.gml.x32.FeaturePropertyType)get_store().find_element_user(FEATUREOFINTEREST$18, 0);
if (target == null) return false;
return target.isNil();
}
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-inspire-ef-v40

/**
* Tests for nil "featureOfInterest" element
*/
public boolean isNilFeatureOfInterest()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.gml.x32.FeaturePropertyType target = null;
target = (net.opengis.gml.x32.FeaturePropertyType)get_store().find_element_user(FEATUREOFINTEREST$10, 0);
if (target == null) return false;
return target.isNil();
}
}

代码示例来源:origin: org.n52.series-api/proxy-dao

private List getSampledFeatures(final FeaturePropertyType sampledFeature)
throws DecodingException {
final List sampledFeatures = new ArrayList<>(1);
if (sampledFeature != null && !sampledFeature.isNil()) {

代码示例来源:origin: org.n52.svalbard/svalbard-xmlbeans

throws DecodingException {
final List sampledFeatures = new ArrayList<>(1);
if (sampledFeature != null && !sampledFeature.isNil()) {

代码示例来源:origin: org.n52.svalbard/svalbard-xmlbeans

throws DecodingException {
final List sampledFeatures = new ArrayList(1);
if (sampledFeature != null && !sampledFeature.isNil()) {

代码示例来源:origin: org.n52.svalbard/svalbard-xmlbeans

private Nillable createFeatureOfInterest(OMObservationType omot,
Map featureMap) throws DecodingException {
if (omot.getFeatureOfInterest().isNil() || omot.getFeatureOfInterest().isSetNilReason()) {
if (omot.getFeatureOfInterest().isSetNilReason()) {
return Nillable. nil(omot.getFeatureOfInterest().getNilReason().toString());
}
} else {
Object decodeXmlElement = decodeXmlElement(omot.getFeatureOfInterest());
if (decodeXmlElement instanceof AbstractFeature) {
AbstractFeature featureOfInterest = (AbstractFeature) decodeXmlElement;
return Nillable.of(checkFeatureWithMap(featureOfInterest, featureMap));
}
}
return Nillable. nil();
}

推荐阅读
  • 本文探讨了Java中有效停止线程的多种方法,包括使用标志位、中断机制及处理阻塞I/O操作等,旨在帮助开发者避免使用已废弃的危险方法,确保线程安全和程序稳定性。 ... [详细]
  • 本文介绍了在解决Hive表中复杂数据结构平铺化问题后,如何通过创建视图来准确计算广告日志的曝光PV,特别是针对用户对应多个标签的情况。同时,详细探讨了UDF的使用方法及其在实际项目中的应用。 ... [详细]
  • 本文提供了多个关键点来帮助开发者提高Java编程能力,包括代码规范、性能优化和最佳实践等方面,旨在指导读者成为更加优秀的Java程序员。 ... [详细]
  • 本文详细解析了Java中流的概念,特别是OutputStream和InputStream的区别,并通过实际案例介绍了如何实现Java对象的序列化。文章不仅解释了流的基本概念,还探讨了序列化的重要性和具体实现步骤。 ... [详细]
  • 本文详细介绍了Spring AOP注解的基本概念及其实现方式,并通过实例演示了如何在项目中使用这些注解进行面向切面的编程。旨在帮助开发者更好地理解和运用Spring AOP功能。 ... [详细]
  • 优雅地记录API调用时长
    本文旨在探讨如何高效且优雅地记录API接口的调用时长,通过实际案例和代码示例,帮助开发者理解并实施这一技术,提高系统的可观测性和调试效率。 ... [详细]
  • GCC(GNU Compiler Collection)是GNU项目下的一款功能全面且高效的多平台编译工具,广泛应用于Linux操作系统中。本文将详细介绍GCC的特点及其基本使用方法。 ... [详细]
  • 本文详细介绍了如何将After Effects中的动画相机数据导入到Vizrt系统中,提供了一种有效的解决方案,适用于需要在广播级图形制作中使用AE动画的专业人士。 ... [详细]
  • 今天老师上课讲解的很好,特意记录下来便于以后复习。多态的简单理解*1.什么是多态性?*(1)同一个动作与不同的对象产生不同的行为*(2)多态指的 ... [详细]
  • 本文介绍了如何使用C# Winform开发局域网内的文件传输功能,详细描述了从用户界面到后端网络通信的具体实现。 ... [详细]
  • 近期在研究Java IO流技术时,遇到了一个关于如何正确读取Doc文档而不出现乱码的问题。本文将详细介绍使用Apache POI库处理Doc和Docx文件的具体方法,包括必要的库引入和示例代码。 ... [详细]
  • 本文详细介绍了Oracle RMAN中的增量备份机制,重点解析了差异增量和累积增量备份的概念及其在不同Oracle版本中的实现。通过对比两种备份方式的特点,帮助读者选择合适的备份策略。 ... [详细]
  • 构建Python自助式数据查询系统
    在现代数据密集型环境中,业务团队频繁需要从数据库中提取特定信息。为了提高效率并减少IT部门的工作负担,本文探讨了一种利用Python语言实现的自助数据查询工具的设计与实现。 ... [详细]
  • 本文详细介绍了如何在本地环境中安装配置Frida及其服务器组件,以及如何通过Frida进行基本的应用程序动态分析,包括获取应用版本和加载的类信息。 ... [详细]
  • Java实现实时更新的日期与时间显示
    本文介绍了如何使用Java编程语言来创建一个能够实时更新显示系统当前日期和时间的小程序。通过使用Swing库中的组件和定时器功能,可以实现界面友好且功能强大的时间显示应用。 ... [详细]
author-avatar
w果乐园地盘BSp
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有