- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.edu.icm.model.bwmeta.y.YContentFile.getId()
方法的一些代码示例,展示了YContentFile.getId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YContentFile.getId()
方法的具体详情如下:
包路径:pl.edu.icm.model.bwmeta.y.YContentFile
类名称:YContentFile
方法名:getId
暂无
代码示例来源:origin: pl.edu.icm.ceon/ceon-converters-commons
public void addFile(Entry file) {
if (!this.files.contains(file)) {
this.files.add(file);
} else {
log.warn("Trying to add second file: "+file.description.getId()+" skipping");
}
}
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
public void addFile(Entry file) {
if (!this.files.contains(file)) {
this.files.add(file);
} else {
log.warn("Trying to add second file: "+file.description.getId()+" skipping");
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
private boolean checkIfContentPresent(final YElement yElement, final String fileId) {
for (YContentEntry<?> content : yElement.getContents()) {
if (content instanceof YContentFile) {
if (StringUtils.equals(((YContentFile) content).getId(), fileId)) {
return true;
}
}
}
return false;
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-impl
@Override
public void doWithFile(YContentFile yfile) {
if (contentId.equals(yfile.getId())) {
List<String> locations = yfile.getLocations();
if (locations.size() > 0) {
location = locations.iterator().next();
}
}
}
};
代码示例来源:origin: pl.edu.icm.synat/synat-importer-direct
@SuppressWarnings("rawtypes")
private YContentFile findYContentFileById(Iterable<YContentEntry> contents, String id) {
for (YContentEntry<?> contentEntry : contents) {
if (contentEntry instanceof YContentFile) {
YContentFile contentFile = (YContentFile) contentEntry;
if (contentFile.getId().equals(id)) {
return contentFile;
}
} else {
YContentDirectory directory = (YContentDirectory) contentEntry;
return findYContentFileById(directory.getEntries(), id);
}
}
return null;
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-impl
private String extractId(YContentFile yFile) {
YName fileNameCandidate = yFile.getOneName(NameTypes.NM_FILE_NAME);
if (fileNameCandidate == null) {
fileNameCandidate = yFile.getOneName();
}
if (fileNameCandidate == null) {
return yFile.getId();
} else {
return fileNameCandidate.getText();
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-impl
private FLocat createContentLocation(String elementId, YContentFile yfile) {
FLocat fLocat = new FLocat();
fLocat.setLOCTYPE("HANDLE");
fLocat.setHref(yfile.getId());
return fLocat;
}
代码示例来源:origin: pl.edu.icm.synat/synat-importer-direct
@Override
public DataResponse apply(YElement input) {
ZipFile zipFile = processorState.getZipFile();
ZipEntry lastEntry = processorState.getLastZipEntry();
YAttribute attribute = new YAttribute(CommonExtractorContstants.SOURCE_ATTRIBUTE, zipFile.getName() + "/" + lastEntry.getName());
input.getAttributes().add(attribute);
DataResponse dataResponse = new DataResponse(input, dataResponseQualityComparator);
for (YContentFile file : createIterable(input.getContents())) {
String id = file.getId();
String fileName = file.getLocations().get(0);
ZipEntry entry = zipFile.getEntry(fileName);
if (entry != null) {
dataResponse.addContent(id, new ZipEntryResource(zipFile.getName(), entry));
}
}
if(insertSource){
dataResponse.addContent(CommonExtractorContstants.SOURCE_ATTRIBUTE, new ZipEntryResource(zipFile.getName(), lastEntry));
}
return dataResponse;
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
private List<ContentFileData> findChapterPages(List<YContentEntry> chapterEntries, Locale locale, String mainLevel) {
List<ContentFileData> result = new ArrayList<ContentFileData>();
for (YContentEntry<?> content : chapterEntries) {
if (content instanceof YContentFile) {
YContentFile file = (YContentFile) content;
if (yModelPropertyExtractor.isFileAccepted(file, mainLevel)) {
result.add(new ContentFileData(file.getId(), YModelUtils.getDefaultName(file), fetchName(file.getFormat(), locale), yModelPropertyExtractor.prepareLocation(file.getLocations())));
}
} else if (content instanceof YContentDirectory) {
YContentDirectory dir = (YContentDirectory) content;
if (ContentTypes.CONTENT_MULTI_TYPE.equals(dir.getType())) {
result.addAll(findChapterPages(dir.getEntries(), locale, mainLevel));
}
}
}
return result;
}
代码示例来源:origin: pl.edu.icm.yadda.repowebeditor/repository-web-editor-core
private List<ContentInfo> getContentInfo(YContentFile file){
Collection<String> names = convertNames(file.getNames());
ContentInfo contentInfo = new ContentInfo.Builder(file.getFormat(), file.getId())
.locations(file.getLocations())
.names(names)
.type(file.getType())
.build();
return Arrays.asList(contentInfo);
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
id = Long.parseLong(file.getId());
} catch (NumberFormatException ex) {
id = 0;
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
private List<ContentEntryData> translateContent(List<YContentEntry> contentList, Locale locale, String mainLevel) {
List<ContentEntryData> result = new ArrayList<ContentEntryData>();
for (YContentEntry<?> content : contentList) {
if (content instanceof YContentFile) {
YContentFile file = (YContentFile) content;
if (yModelPropertyExtractor.isFileAccepted(file, mainLevel)) {
result.add(new ContentFileData(file.getId(), YModelUtils.getDefaultName(file), fetchName(file.getFormat(), locale), yModelPropertyExtractor.prepareLocation(file.getLocations())));
}
} else if (content instanceof YContentDirectory) {
YContentDirectory dir = (YContentDirectory) content;
if (ContentTypes.CONTENT_PAGED.equals(dir.getType()) && findIfContentExists(dir.getEntries(), mainLevel)) {
result.add(new ContentDirectoryData(dir.getId(), getDirectoryName(dir), dir.getType(), fetchName(dir.getType(), locale)));
} else if(findIfContentExists(dir.getEntries(), mainLevel)) {
result.add(new ContentDirectoryData(dir.getId(), getDirectoryName(dir), dir.getType(), fetchName(dir.getType(), locale), translateContent(dir.getEntries(), locale, mainLevel)));
}
}
}
return result;
}
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
description.setDescriptions(template.getDescriptions());
description.setFormat(template.getFormat());
description.setId(template.getId());
description.setLanguages(template.getLanguages());
description.setLocations(template.getLocations());
代码示例来源:origin: pl.edu.icm.ceon/ceon-converters-commons
description.setDescriptions(template.getDescriptions());
description.setFormat(template.getFormat());
description.setId(template.getId());
description.setLanguages(template.getLanguages());
description.setLocations(template.getLocations());
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
final String fileName = file.getOneName().getText();
final String location = file.getLocations().get(0);
result.addContent(new ResourceData.ResourceFileData(file.getId(), fileName, location, file.getType()));
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我正在处理一位离职顾问的一些代码。我试图了解传递给方法的 session 变量与 req.getSession() 返回的变量之间是否存在差异 当我在调试器中检查它们时,它们看起来是一样的。是否有理由
我在android中实现了一个媒体播放器,它可以在不同按钮的帮助下播放不同的文件。 public class MainActivity extends AppCompatActivity { Medi
当我使用 magentoshop 访问页面时;我收到此错误消息: 在第 85 行的/xxxxx/app/code/core/Mage/Catalog/Model/Product/Type/Config
我现在无法解决这个问题,所以任何帮助都会很棒.. for(EdgeOf e: gra.getEachVertex()) { System.out.println(e.getId()); }
Thread thbus = new Thread(bus); bus.setName("Bus"+ thbus.getId()); Thread thmechanics = new Thread(b
对于我的 Android 项目,我使用 getID() 方法来检索 View 的数值并将该值存储在我的数据库中。我相信针对特定 View 的此 getID() 方法将始终在生产环境中的多次执行以及多年
我记得在 JPA 或 hibernate 中有一个注释告诉 hibernate 使用 getId/setId 方法而不是属性(我们注释我们的属性)。如果没有此设置,getId 会导致访问数据库并填充该
我不确定这是否是导致我的问题的真正原因,但也许有人会知道。当我使用 Laravel Socialite 并执行以下操作时: $social_user = Socialite::driver($prov
这个问题已经有答案了: How to get Resource Name from Resource id (5 个回答) 已关闭 4 年前。 我的主要 Activity 中有一系列按钮,当我单击其中
我正在尝试实现一个 getter 方法来获取对象的 id:该方法应声明为“public int getId()”。 问题是对象类扩展了 Thread 类,该类已经具有“int getId()”方法。
嗨,我正在 Spring boot MongoDB 示例上做简单的应用程序。 我在运行 sprint boot 主类时收到此错误: BookController.java Error:(26, 54)
所以我使用了 view.getId() 来实现改变我所拥有的,就像这样: public void changeLinear(View view) { layoutPrimer.setVisib
HttpSession.getId() 返回的值是否保证在整个时间段内是唯一的——或者仅在所有 Activity session 中是唯一的? 换句话说,我可以将它用作 session 日志条目的 k
为什么,例如,Thread.currentThread().getId() 返回一个 long? 这真的需要 64 位吗?就像我要让一台机器运行那么多线程一样! 说真的,这有点痛苦,因为我正在写一些东
如果多个 Java 应用程序在一个系统上运行,每个线程 ID 相对于所有其他 Java 线程是否是唯一的,无论它们在哪个应用程序中运行? Java 应用程序应该相对于其他 Java 应用程序是沙盒的,
我是 android 编程的新手。我想更新 recyclerview 的卡片 View 布局中的项目。这是 recyclerview 的 ListRowViewHolder public static
本文整理了Java中java.time.ZoneOffset.getId()方法的一些代码示例,展示了ZoneOffset.getId()的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中java.time.ZoneId.getId()方法的一些代码示例,展示了ZoneId.getId()的具体用法。这些代码示例主要来源于Github/Stackoverflow/M
本文整理了Java中libcore.util.ZoneInfo.getID()方法的一些代码示例,展示了ZoneInfo.getID()的具体用法。这些代码示例主要来源于Github/Stackove
我是一名优秀的程序员,十分优秀!