本文整理汇总了Java中com.liferay.portal.kernel.util.StringBundler.append方法的典型用法代码示例。如果您正苦于以下问题:Java StringBundler.append方法的具体用法?Java StringBundler.append怎么用?Java StringBundler.append使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.liferay.portal.kernel.util.StringBundler
的用法示例。
在下文中一共展示了StringBundler.append方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: findByUuid_First
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the first dict item group in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the first matching dict item group
* @throws NoSuchDictItemGroupException if a matching dict item group could not be found
*/
@Override
public DictItemGroup findByUuid_First(String uuid,
OrderByComparator<DictItemGroup> orderByComparator)
throws NoSuchDictItemGroupException {
DictItemGroup dictItemGroup = fetchByUuid_First(uuid, orderByComparator);
if (dictItemGroup != null) {
return dictItemGroup;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictItemGroupException(msg.toString());
}
示例2: findByUuid_First
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the first dict item in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the first matching dict item
* @throws NoSuchDictItemException if a matching dict item could not be found
*/
@Override
public DictItem findByUuid_First(String uuid,
OrderByComparator<DictItem> orderByComparator)
throws NoSuchDictItemException {
DictItem dictItem = fetchByUuid_First(uuid, orderByComparator);
if (dictItem != null) {
return dictItem;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictItemException(msg.toString());
}
示例3: findByUuid_C_First
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the first dict collection in the ordered set where uuid = ? and companyId = ?.
*
* @param uuid the uuid
* @param companyId the company ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the first matching dict collection
* @throws NoSuchDictCollectionException if a matching dict collection could not be found
*/
@Override
public DictCollection findByUuid_C_First(String uuid, long companyId,
OrderByComparator<DictCollection> orderByComparator)
throws NoSuchDictCollectionException {
DictCollection dictCollection = fetchByUuid_C_First(uuid, companyId,
orderByComparator);
if (dictCollection != null) {
return dictCollection;
}
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(", companyId=");
msg.append(companyId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictCollectionException(msg.toString());
}
示例4: findByUuid_Last
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the last dict item group in the ordered set where uuid = ?.
*
* @param uuid the uuid
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching dict item group
* @throws NoSuchDictItemGroupException if a matching dict item group could not be found
*/
@Override
public DictItemGroup findByUuid_Last(String uuid,
OrderByComparator<DictItemGroup> orderByComparator)
throws NoSuchDictItemGroupException {
DictItemGroup dictItemGroup = fetchByUuid_Last(uuid, orderByComparator);
if (dictItemGroup != null) {
return dictItemGroup;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictItemGroupException(msg.toString());
}
示例5: getCompletionSuggester
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Get completion suggester
*
* @param configuration
* @param locale
* @param keywords
* @return
* @throws Exception
*/
protected Suggester getCompletionSuggester(
JSONObject configuration, Locale locale, String keywords) throws Exception {
StringBundler sb = new StringBundler();
sb.append(configuration.getString("fieldPrefix"));
if (configuration.getBoolean(("isLocalized"))) {
sb.append(locale.toString());
}
sb.append(configuration.getString("fieldSuffix"));
CompletionSuggester suggester = new CompletionSuggester(
configuration.getString("suggesterName"), sb.toString(), keywords);
suggester.setSize(configuration.getInt("numberOfSuggestions"));
String analyzer = configuration.getString("analyzer");
if (analyzer != null) {
suggester.setAnalyzer(analyzer);
}
return suggester;
}
示例6: findByF_dictItemId_First
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the first dict item group in the ordered set where groupId = ? and dictItemId = ?.
*
* @param groupId the group ID
* @param dictItemId the dict item ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the first matching dict item group
* @throws NoSuchDictItemGroupException if a matching dict item group could not be found
*/
@Override
public DictItemGroup findByF_dictItemId_First(long groupId,
long dictItemId, OrderByComparator<DictItemGroup> orderByComparator)
throws NoSuchDictItemGroupException {
DictItemGroup dictItemGroup = fetchByF_dictItemId_First(groupId,
dictItemId, orderByComparator);
if (dictItemGroup != null) {
return dictItemGroup;
}
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("groupId=");
msg.append(groupId);
msg.append(", dictItemId=");
msg.append(dictItemId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictItemGroupException(msg.toString());
}
示例7: findByF_groupId_Last
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the last comment in the ordered set where groupId = ?.
*
* @param groupId the group ID
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the last matching comment
* @throws NoSuchCommentException if a matching comment could not be found
*/
@Override
public Comment findByF_groupId_Last(long groupId,
OrderByComparator<Comment> orderByComparator)
throws NoSuchCommentException {
Comment comment = fetchByF_groupId_Last(groupId, orderByComparator);
if (comment != null) {
return comment;
}
StringBundler msg = new StringBundler(4);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("groupId=");
msg.append(groupId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchCommentException(msg.toString());
}
示例8: getEntryRowIds
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
protected String getEntryRowIds() {
StringBundler sb = new StringBundler(13);
sb.append("['");
sb.append(_liferayPortletResponse.getNamespace());
sb.append(RowChecker.ROW_IDS);
sb.append(TaskRecord.class.getSimpleName());
sb.append("']");
return sb.toString();
}
示例9: getLink
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* {@inheritDoc}
*/
@Override
public String getLink() {
StringBundler sb = new StringBundler();
sb.append(PortalUtil.getPortalURL(_portletRequest));
sb.append("/documents/");
sb.append(_document.get(Field.SCOPE_GROUP_ID));
sb.append("/");
sb.append(_document.get(Field.FOLDER_ID));
sb.append("/");
sb.append(_document.get("path"));
return sb.toString();
}
示例10: getNotLayoutBoundJournalArticleUrl
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Get a view url for an article which is not bound to a layout or has a
* default view page.
*
* @return url string
* @throws PortalException
*/
protected String getNotLayoutBoundJournalArticleUrl()
throws PortalException {
ThemeDisplay themeDisplay =
(ThemeDisplay) _portletRequest.getAttribute(WebKeys.THEME_DISPLAY);
Layout layout = GSearchUtil.getLayoutByFriendlyURL(
_portletRequest, _assetPublisherPageFriendlyURL);
String assetPublisherInstanceId =
GSearchUtil.findDefaultAssetPublisherInstanceId(layout);
JournalArticle journalArticle = getJournalArticle();
StringBundler sb = new StringBundler();
sb.append(PortalUtil.getLayoutFriendlyURL(layout, themeDisplay));
sb.append("/-/asset_publisher/");
sb.append(assetPublisherInstanceId);
sb.append("/content/");
sb.append(journalArticle.getUrlTitle());
sb.append("?_");
sb.append(AssetPublisherPortletKeys.ASSET_PUBLISHER);
sb.append("_INSTANCE_");
sb.append(assetPublisherInstanceId);
sb.append("_groupId=");
sb.append(journalArticle.getGroupId());
return sb.toString();
}
示例11: findByF_parentItemId_level_First
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the first dict item in the ordered set where groupId = ? and dictCollectionId = ? and parentItemId = ? and level = ?.
*
* @param groupId the group ID
* @param dictCollectionId the dict collection ID
* @param parentItemId the parent item ID
* @param level the level
* @param orderByComparator the comparator to order the set by (optionally <code>null</code>)
* @return the first matching dict item
* @throws NoSuchDictItemException if a matching dict item could not be found
*/
@Override
public DictItem findByF_parentItemId_level_First(long groupId,
long dictCollectionId, long parentItemId, int level,
OrderByComparator<DictItem> orderByComparator)
throws NoSuchDictItemException {
DictItem dictItem = fetchByF_parentItemId_level_First(groupId,
dictCollectionId, parentItemId, level, orderByComparator);
if (dictItem != null) {
return dictItem;
}
StringBundler msg = new StringBundler(10);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("groupId=");
msg.append(groupId);
msg.append(", dictCollectionId=");
msg.append(dictCollectionId);
msg.append(", parentItemId=");
msg.append(parentItemId);
msg.append(", level=");
msg.append(level);
msg.append(StringPool.CLOSE_CURLY_BRACE);
throw new NoSuchDictItemException(msg.toString());
}
示例12: getTikaRawMetadataField
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Get index translated field name for a Tikaraw metadata field.
*
* @param key
* @return
* @throws Exception
*/
protected String getTikaRawMetadataField(String key) throws Exception {
StringBundler sb = new StringBundler();
sb.append("ddm__text__");
sb.append(String.valueOf(getTikaRawStructureId()));
sb.append("__TIFF_IMAGE_");
sb.append(key);
sb.append("_");
sb.append(_locale.toString());
return sb.toString();
}
示例13: findByUUID_G
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the dict collection where uuid = ? and groupId = ? or throws a {@link NoSuchDictCollectionException} if it could not be found.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching dict collection
* @throws NoSuchDictCollectionException if a matching dict collection could not be found
*/
@Override
public DictCollection findByUUID_G(String uuid, long groupId)
throws NoSuchDictCollectionException {
DictCollection dictCollection = fetchByUUID_G(uuid, groupId);
if (dictCollection == null) {
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(", groupId=");
msg.append(groupId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}
throw new NoSuchDictCollectionException(msg.toString());
}
return dictCollection;
}
示例14: findByUUID_G
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the voting result where uuid = ? and groupId = ? or throws a {@link NoSuchVotingResultException} if it could not be found.
*
* @param uuid the uuid
* @param groupId the group ID
* @return the matching voting result
* @throws NoSuchVotingResultException if a matching voting result could not be found
*/
@Override
public VotingResult findByUUID_G(String uuid, long groupId)
throws NoSuchVotingResultException {
VotingResult votingResult = fetchByUUID_G(uuid, groupId);
if (votingResult == null) {
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("uuid=");
msg.append(uuid);
msg.append(", groupId=");
msg.append(groupId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}
throw new NoSuchVotingResultException(msg.toString());
}
return votingResult;
}
示例15: findByIC_DCI
import com.liferay.portal.kernel.util.StringBundler; //导入方法依赖的package包/类
/**
* Returns the dict item where itemCode = ? and dictCollectionId = ? or throws a {@link NoSuchDictItemException} if it could not be found.
*
* @param itemCode the item code
* @param dictCollectionId the dict collection ID
* @return the matching dict item
* @throws NoSuchDictItemException if a matching dict item could not be found
*/
@Override
public DictItem findByIC_DCI(String itemCode, long dictCollectionId)
throws NoSuchDictItemException {
DictItem dictItem = fetchByIC_DCI(itemCode, dictCollectionId);
if (dictItem == null) {
StringBundler msg = new StringBundler(6);
msg.append(_NO_SUCH_ENTITY_WITH_KEY);
msg.append("itemCode=");
msg.append(itemCode);
msg.append(", dictCollectionId=");
msg.append(dictCollectionId);
msg.append(StringPool.CLOSE_CURLY_BRACE);
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}
throw new NoSuchDictItemException(msg.toString());
}
return dictItem;
}