- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中pl.edu.icm.model.bwmeta.y.YElement.getContents()
方法的一些代码示例,展示了YElement.getContents()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YElement.getContents()
方法的具体详情如下:
包路径:pl.edu.icm.model.bwmeta.y.YElement
类名称:YElement
方法名:getContents
暂无
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
@Override
public boolean hasChapteredContent(YElement element) {
if (element.getContents() != null) {
return hasChapteredContent(element.getContents());
}
return false;
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
@Override
public boolean isContentAvailable(YElement yElement) {
String mainLevel = fetchCurrentStructureLevel(yElement);
if (yElement.getContents() != null && !yElement.getContents().isEmpty()) {
return checkContentAvailable(yElement.getContents(), mainLevel);
}
return false;
}
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
public void convertContentLocations(YExportable entity) {
if (!(entity instanceof YElement)) {
return;
}
YElement element = (YElement) entity;
for (YContentEntry<?> entry : element.getContents()) {
convertContentLocations(entry);
}
}
代码示例来源: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-process-common
private void prepareCover(YElement element, String location, String mimeType, String fileId) {
List<String> locations = new ArrayList<String>();
locations.add(fileId);
locations.add(location);
YContentFile newCover = new YContentFile(fileId, FileTypes.FT_COVER, mimeType, locations);
element.getContents().add(newCover);
}
代码示例来源:origin: pl.edu.icm.synat/synat-process-common
public static void processYContents(YElement element, Predicate<YContentEntry<?>> shouldDeletePredicate) {
if (element == null) {
return;
}
processYContents(element.getContents(), shouldDeletePredicate);
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
@Override
public List<ContentEntryData> translateContentList(YElement element, Locale locale) {
final String mainLevel = yModelPropertyExtractor.fetchCurrentStructureLevel(element);
if (element.getContents() != null) {
return translateContent(element.getContents(), locale, mainLevel);
} else {
return new ArrayList<ContentEntryData>();
}
}
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
public void convertContentLocations(YExportable entity) {
if (!(entity instanceof YElement)) {
return;
}
YElement element = (YElement) entity;
for (YContentEntry<?> entry : element.getContents()) {
convertContentLocations(entry);
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
private Map<String, YContentFile> scanForFulltextFiles(YElement yElement, String... fileFormats) {
Set<String> formats = Sets.newHashSet(fileFormats);
return scanForFulltextFiles(yElement.getContents(), formats);
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-api
@Override
public List<ContentChapterData> translateContentChapters(YElement element, Locale locale) {
final String mainLevel = yModelPropertyExtractor.fetchCurrentStructureLevel(element);
if (element.getContents() != null) {
return transformChaptersContent(findChapters(element.getContents(), locale), locale, mainLevel);
} else {
return new ArrayList<ContentChapterData>();
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
/**
* For Pionier video stream we must put stream url instead of video id in youtube case.
* @param model, {@code COMP_VIDEO_PLAYER} and {@code COMP_VIDEO_FORMAT} will be put.
* @param yElement, {@code YElement.getContents()} is used for model fill up.
*/
public void prepareVideoAttributes(Model model, YElement yElement) {
final String videoId = prepareVideoId(yElement.getContents());
final String videoFormat = prepareVideoFormat(yElement.getContents());
if ("pionierFormat".equals(videoFormat)) {
model.addAttribute(COMP_VIDEO_PLAYER, preparePionierStreamUrl(videoId));
} else {
model.addAttribute(COMP_VIDEO_PLAYER, videoId);
}
model.addAttribute(COMP_VIDEO_FORMAT, videoFormat);
}
代码示例来源:origin: pl.edu.icm.bwmeta/bwmeta-2-foreign-transformers
protected void fillFormats(YElement yElement, List<YExportable> referedElements, Map<String, List<StringWithAttributes>> ret) {
// format element
for (YContentEntry<?> yContentEntry : yElement.getContents()) {
if (yContentEntry.isFile()) {
if (!ret.containsKey(E_FORMAT)) {
ret.put(E_FORMAT, new ArrayList<StringWithAttributes>());
}
ret.get(E_FORMAT).add(new StringWithAttributes(((YContentFile) yContentEntry).getFormat()));
}
}
}
代码示例来源:origin: pl.edu.icm.yadda/yaddaweb-lite-core
protected String resolveCoverUrl(YElement element) {
for (YContentEntry e : element.getContents()) {
if (e.isFile()) {
YContentFile cFile = (YContentFile) e;
String location = cFile.getLocations().get(0);
if (location != null && ((cFile.getType() != null &&
cFile.getType().equals("cover") || anyContentAsCover))) {
return "download/" + location.replace("yar://", "");
}
}
}
return null;
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
private boolean isLicensedContent(ElementMetadata elementMetadata, String contentPath) {
YElement yElement = (YElement) elementMetadata.getContent();
for (YContentEntry<?> entry : yElement.getContents()) {
if (entry.isFile()) {
YContentFile contentFile = (YContentFile) entry;
if (contentFile.getLocations().contains(contentPath) && notLicensedContentTypes != null
&& notLicensedContentTypes.contains(contentFile.getType())) {
return false;
}
}
}
return true;
}
代码示例来源:origin: pl.edu.icm.yadda/bwmeta-import
@Override
public String constructFieldValue(List<YElement> yelements) {
List<YElement> articles = YElementsParsingToolbox.filterYElementsOfStructureLevel(yelements,
YConstants.EXT_LEVEL_JOURNAL_ARTICLE);
if (articles.size() == 0) {
return null;
}
if (articles.size() > 1) {
log.error("More than one article found in package of yelements!");
}
YElement article = articles.get(0);
List<YContentEntry> contents = article.getContents();
String fullTextLocation = findLocationOfContentLink(contents, YConstants.FT_FULL_TEXT);
if (fullTextLocation != null && fullTextLocation.length() > 0) {
return YElementsParsingToolbox.removeEmptyValues(fullTextLocation);
}
return YElementsParsingToolbox.removeEmptyValues(findLocationOfContentLink(contents, YConstants.FT_PLAIN_TEXT));
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
public static List<FilteredContentEntry<?>> fetchPlainTextContentEntries(YElement element) {
ContentBrowser contentBrowser = new ContentBrowser();
HasFilesContentFilter filter = new PlainTextContentFilter();
return contentBrowser.filter(element.getContents(), filter);
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
protected void fillFormats(HtmlMetaHeaders metadata, YElement yElement) {
for (YContentEntry<?> yContentEntry : yElement.getContents()) {
if (yContentEntry.isFile()) {
YContentFile yContentFile = (YContentFile) yContentEntry;
metadata.addMetadataName(DC_NAMESPACE + SEPARATOR + DublinCoreStrings.E_FORMAT, yContentFile.getFormat());
}
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-portal-core
public static boolean hasPlainTextContentEntries(YElement element) {
ContentBrowser contentBrowser = new ContentBrowser();
HasFilesContentFilter filter = new PlainTextContentFilter();
contentBrowser.filter(element.getContents(), filter);
return filter.hasFiles();
}
代码示例来源:origin: pl.edu.icm.synat/synat-importer-direct
@Override
public void parseMetadata(YElement element, PublicationMeta pm, YLanguage defaultLanguage, List<YElement> ancestors) {
if (pm.getLinkGroup() != null) {
pm.getXmlLang();
for (Link link : pm.getLinkGroup().getLink()) {
switch (link.getType()) {
case "toTypesetVersion":
element.getContents().add(getContentFile(link));
continue;
default:
LOGGER.info("Unknown link type: " + link.getType());
}
}
}
}
代码示例来源:origin: pl.edu.icm.synat/synat-business-services-impl
@SuppressWarnings("rawtypes")
public Mets transform(YElement yElement) {
List<YContentEntry> contents = yElement.getContents();
Mets mets = new Mets();
FileSec fileSec = new FileSec();
mets.setFileSec(fileSec);
FileGrp mainFileGroup = new FileGrp();
mainFileGroup.setID("main");
extractContents(yElement.getId(), contents, mainFileGroup);
fileSec.getFileGrps().add(mainFileGroup);
mets.setID(yElement.getId());
String label = prepareLabel(yElement);
mets.setLABEL(label);
addDCMetadata(mets.getDmdSecs(), yElement);
addBwmeta(mets.getDmdSecs(), yElement);
return mets;
}
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!