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

org.apache.uima.jcas.tcas.DocumentAnnotation.getDocType()方法的使用及代码示例

本文整理了Java中org.apache.uima.jcas.tcas.DocumentAnnotation.getDocType()方法的一些代码示例,展示了

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

DocumentAnnotation.getDocType介绍

[英]getter for docType - gets The document type
[中]docType的getter-获取文档类型

代码示例

代码示例来源:origin: dstl/baleen

private File getDestinationFolder(DocumentAnnotation da) {
File dest = new File(destination);
if (splitByType) {
String type = da.getDocType();
if (!Strings.isNullOrEmpty(type)) {
dest = new File(dest, type);
}
}
return dest;
}
}

代码示例来源:origin: dstl/baleen

private void addDocumentAnnotationToProperties(
final Map properties, final DocumentAnnotation da) {
properties.put(AnalysisConstants.DOCUMENT_TYPE, da.getDocType());
properties.put(AnalysisConstants.CAVEATS, UimaTypesUtils.toList(da.getDocumentCaveats()));
properties.put(AnalysisConstants.CLASSIFICATION, da.getDocumentClassification());
properties.put(
AnalysisConstants.RELEASABILITY, UimaTypesUtils.toList(da.getDocumentReleasability()));
properties.put(AnalysisConstants.LANGUAGE, da.getLanguage());
properties.put(AnalysisConstants.HASH, da.getHash());
properties.put(AnalysisConstants.SOURCE, da.getSourceUri());
properties.put(AnalysisConstants.TIMESTAMP, new Date(da.getTimestamp()));
}

代码示例来源:origin: dstl/baleen

private Map serialiseDocumentAnnotation(final DocumentAnnotation da) {
final Map map = new HashMap<>();
map.put(JsonJCas.DA_DOCUMENT_TYPE, da.getDocType());
map.put(JsonJCas.DA_LANGUAGE, da.getLanguage());
map.put(JsonJCas.DA_SOURCE_URI, da.getSourceUri());
map.put(JsonJCas.DA_CLASSIFICATION, da.getDocumentClassification());
final String[] caveats =
da.getDocumentCaveats() != null ? da.getDocumentCaveats().toArray() : new String[0];
map.put(JsonJCas.DA_CAVEATS, caveats);
final String[] rels =
da.getDocumentReleasability() != null
? da.getDocumentReleasability().toArray()
: new String[0];
map.put(JsonJCas.DA_RELEASABILITY, rels);
return map;
}

代码示例来源:origin: dstl/baleen

@Test
public void testBaseDirectoryOneLayers() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri(tmp.getAbsolutePath());
processJCas(BASE_DIRECTORY, parentDir.getAbsolutePath());
String relative =
tmp.getAbsolutePath()
.substring(
parentDir.getAbsolutePath().length() + 1,
tmp.getAbsolutePath().length() - tmp.getName().length() - 1);
assertEquals(relative, da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testBaseDirectoryTwoLayers() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri(tmp.getAbsolutePath());
processJCas(BASE_DIRECTORY, topDir.getAbsolutePath());
String relative =
tmp.getAbsolutePath()
.substring(
topDir.getAbsolutePath().length() + 1,
tmp.getAbsolutePath().length() - tmp.getName().length() - 1);
assertEquals(relative, da.getDocType());
}
}

代码示例来源:origin: dstl/baleen

@Test
public void testBadParameters() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri(tmp.getAbsolutePath());
processJCas(BASE_DIRECTORY, null);
String relative =
tmp.getAbsolutePath()
.substring(
parentDir.getAbsolutePath().length() + 1,
tmp.getAbsolutePath().length() - tmp.getName().length() - 1);
assertNotEquals(relative, da.getDocType());
processJCas(BASE_DIRECTORY, "/not/the/path");
assertNotEquals(relative, da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testThrehold() throws Exception {
jCas.setDocumentText("This text isn't going to score above the threshold.");
processJCas(
DocumentType.PARAM_MODEL,
getClass().getResource(DOCUMENTTYPE_BIN).getPath(),
DocumentType.PARAM_CONFIDENCE_THRESHOLD,
"0.99"); // Model trained on IOM and BBC reporting, and is OFFICIAL
DocumentAnnotation da = getDocumentAnnotation();
assertEquals(null, da.getDocType());
}
}

代码示例来源:origin: dstl/baleen

@Test
public void test() throws Exception {
try {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri(tmp.getAbsolutePath());
processJCas();
// Remove slash (requried for unix paths)
String absolutePath = childDir.getAbsolutePath();
if (absolutePath.startsWith(File.separator)) {
absolutePath = absolutePath.substring(1);
}
assertEquals(absolutePath, da.getDocType());
} finally {
tmp.delete();
}
}

代码示例来源:origin: dstl/baleen

@Test
public void testBaseDirectory() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri(tmp.getAbsolutePath());
processJCas(BASE_DIRECTORY, childDir.getAbsolutePath());
assertEquals("", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testType() throws AnalysisEngineProcessException, ResourceInitializationException {
processJCas(DocumentTypeByParameter.PARAM_TYPE, "test");
assertEquals("test", getDocumentAnnotation().getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testNullType()
throws AnalysisEngineProcessException, ResourceInitializationException {
processJCas(DocumentTypeByParameter.PARAM_TYPE, null);
assertNull(getDocumentAnnotation().getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testEmptyType()
throws AnalysisEngineProcessException, ResourceInitializationException {
processJCas(DocumentTypeByParameter.PARAM_TYPE, "");
assertNull(getDocumentAnnotation().getDocType());
}
}

代码示例来源:origin: dstl/baleen

@Test
public void testPatternCaseSensitiveFalse() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(
DocumentTypeByFilename.PARAM_PATTERN,
"\\d{8}-([a-z]).*",
DocumentTypeByFilename.PARAM_DEFAULT,
"unknown");
assertEquals("t", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testDefault() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas();
assertEquals("docx", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testPrefix() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(DocumentTypeByFilename.PARAM_PREFIX, "filetype_");
assertEquals("filetype_docx", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testPattern() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(DocumentTypeByFilename.PARAM_PATTERN, "(\\d{4}).*");
assertEquals("2017", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testLowerCase() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(
DocumentTypeByFilename.PARAM_PATTERN,
"\\d{8}-([a-z]).*",
DocumentTypeByFilename.PARAM_LOWER_CASE,
false);
assertEquals("T", da.getDocType());
}
}

代码示例来源:origin: dstl/baleen

@Test
public void testGroup() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(
DocumentTypeByFilename.PARAM_PATTERN,
"(\\d{4})(\\d{2})(\\d{2}).*",
DocumentTypeByFilename.PARAM_GROUP,
2);
assertEquals("01", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testPatternNoMatch() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(
DocumentTypeByFilename.PARAM_PATTERN,
"([a-z]{2}).*",
DocumentTypeByFilename.PARAM_DEFAULT,
"unknown");
assertEquals("unknown", da.getDocType());
}

代码示例来源:origin: dstl/baleen

@Test
public void testPatternCaseSensitiveTrue() throws Exception {
DocumentAnnotation da = getDocumentAnnotation();
da.setSourceUri("20170127-Test_Document.docx");
processJCas(
DocumentTypeByFilename.PARAM_PATTERN,
"\\d{8}-([a-z]).*",
DocumentTypeByFilename.PARAM_DEFAULT,
"unknown",
DocumentTypeByFilename.PARAM_CASE_SENSITIVE,
true);
assertEquals("unknown", da.getDocType());
}

推荐阅读
  • 本文详细介绍了 org.apache.commons.io.IOCase 类中的 checkCompareTo() 方法,通过多个代码示例展示其在不同场景下的使用方法。 ... [详细]
  • 本文详细介绍了 Java 中的 org.apache.hadoop.registry.client.impl.zk.ZKPathDumper 类,提供了丰富的代码示例和使用指南。通过这些示例,读者可以更好地理解如何在实际项目中利用 ZKPathDumper 类进行注册表树的转储操作。 ... [详细]
  • 本文详细介绍了Java中org.apache.logging.log4j.spi.AbstractLogger类的logIfEnabled()方法,包括其功能、参数说明及实际代码示例。通过这些示例,读者可以更好地掌握如何在项目中使用该方法进行日志记录。 ... [详细]
  • 本文详细探讨了 org.apache.hadoop.ha.HAServiceTarget 类中的 checkFencingConfigured 方法,包括其功能、应用场景及代码示例。通过实际代码片段,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 本文介绍如何使用 Android 的 Canvas 和 View 组件创建一个简单的绘图板应用程序,支持触摸绘画和保存图片功能。 ... [详细]
  • 深入解析Java枚举及其高级特性
    本文详细介绍了Java枚举的概念、语法、使用规则和应用场景,并探讨了其在实际编程中的高级应用。所有相关内容已收录于GitHub仓库[JavaLearningmanual](https://github.com/Ziphtracks/JavaLearningmanual),欢迎Star并持续关注。 ... [详细]
  • 本文作者分享了在阿里巴巴获得实习offer的经历,包括五轮面试的详细内容和经验总结。其中四轮为技术面试,一轮为HR面试,涵盖了大量的Java技术和项目实践经验。 ... [详细]
  • JavaScript 基础语法指南
    本文详细介绍了 JavaScript 的基础语法,包括变量、数据类型、运算符、语句和函数等内容,旨在为初学者提供全面的入门指导。 ... [详细]
  • 异常要理解Java异常处理是如何工作的,需要掌握一下三种异常类型:检查性异常:最具代表性的检查性异常是用户错误或问题引起的异常ÿ ... [详细]
  • 本文介绍了如何利用 Spring Boot 和 Groovy 构建一个灵活且可扩展的动态计算引擎,以满足钱包应用中类似余额宝功能的推广需求。我们将探讨不同的设计方案,并最终选择最适合的技术栈来实现这一目标。 ... [详细]
  • 本文详细解析了Java中hashCode()和equals()方法的实现原理及其在哈希表结构中的应用,探讨了两者之间的关系及其实现时需要注意的问题。 ... [详细]
  • Hadoop发行版本选择指南:技术解析与应用实践
    本文详细介绍了Hadoop的不同发行版本及其特点,帮助读者根据实际需求选择最合适的Hadoop版本。内容涵盖Apache Hadoop、Cloudera CDH等主流版本的特性及应用场景。 ... [详细]
  • 本题来自WC2014,题目编号为BZOJ3435、洛谷P3920和UOJ55。该问题描述了一棵不断生长的带权树及其节点上小精灵之间的友谊关系,要求实时计算每次新增节点后树上所有可能的朋友对数。 ... [详细]
  • Java项目分层架构设计与实践
    本文探讨了Java项目中应用分层的最佳实践,不仅介绍了常见的三层架构(Controller、Service、DAO),还深入分析了各层的职责划分及优化建议。通过合理的分层设计,可以提高代码的可维护性、扩展性和团队协作效率。 ... [详细]
  • 简化报表生成:EasyReport工具的全面解析
    本文详细介绍了EasyReport,一个易于使用的开源Web报表工具。该工具支持Hadoop、HBase及多种关系型数据库,能够将SQL查询结果转换为HTML表格,并提供Excel导出、图表显示和表头冻结等功能。 ... [详细]
author-avatar
张。、
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有