Package com.flowable.core.content.api
Interface CoreContentItemQuery
- All Superinterfaces:
org.flowable.content.api.ContentItemBaseQuery<CoreContentItemQuery,CoreContentItem>,org.flowable.common.engine.api.query.Query<CoreContentItemQuery,CoreContentItem>
- All Known Implementing Classes:
CoreContentItemQueryImpl
public interface CoreContentItemQuery extends org.flowable.content.api.ContentItemBaseQuery<CoreContentItemQuery,CoreContentItem>
-
Nested Class Summary
-
Method Summary
Modifier and Type Method Description CoreContentItemQuerybaseFolderId(java.lang.String baseFolderId)Only select content items with the given folder base id.CoreContentItemQuerydefinitionId(java.lang.String definitionId)Only select content items with the given definition id.CoreContentItemQueryisRootFolder()Only select folder content items which are on the root level.CoreContentItemQuerylatest()Only select content items with the latest version.CoreContentItemQuerymimeTypeNotEquals(java.lang.String mimeTypeNotEquals)Only select content items with a mime type that is not equal to the given mime type.CoreContentItemQueryparentFolderId(java.lang.String parentFolderId)Only select content items with the given folder parent id.CoreContentItemQuerystate(java.lang.String state)Only select content items with the given state.CoreContentItemQuerysubState(java.lang.String subState)Only select content items with the given sub state.CoreContentItemQuerysubType(java.lang.String subType)Only select content items with the given sub type.CoreContentItemQuerytype(java.lang.String type)Only select content items with the given type.CoreContentItemQueryversion(java.lang.Integer version)Only select content items with the given version.CoreContentItemQueryversionInfo(java.lang.String versionInfo)Only select content items with the given version info.CoreContentItemQueryversionInfoLike(java.lang.String versionInfoLike)Only select content items with a version info like the given string.CoreContentItemQueryversionParentId(java.lang.String versionParentId)Only select content items with the given version parent id.Methods inherited from interface org.flowable.content.api.ContentItemBaseQuery
contentAvailable, contentSize, contentStoreId, contentStoreIdLike, contentStoreName, contentStoreNameLike, createdBy, createdByLike, createdDate, createdDateAfter, createdDateBefore, field, fieldLike, id, ids, lastModifiedBy, lastModifiedByLike, lastModifiedDate, lastModifiedDateAfter, lastModifiedDateBefore, maxContentSize, mimeType, mimeTypeLike, minContentSize, name, nameLike, orderByCreatedDate, orderByTenantId, processInstanceId, processInstanceIdLike, scopeId, scopeIdLike, scopeType, scopeTypeLike, taskId, taskIdLike, tenantId, tenantIdLike, withoutTenantId
-
Method Details
-
version
Only select content items with the given version. -
versionInfo
Only select content items with the given version info. -
versionInfoLike
Only select content items with a version info like the given string. -
versionParentId
Only select content items with the given version parent id. -
definitionId
Only select content items with the given definition id. -
type
Only select content items with the given type. -
subType
Only select content items with the given sub type. -
state
Only select content items with the given state. -
subState
Only select content items with the given sub state. -
parentFolderId
Only select content items with the given folder parent id. -
baseFolderId
Only select content items with the given folder base id. -
mimeTypeNotEquals
Only select content items with a mime type that is not equal to the given mime type. -
isRootFolder
CoreContentItemQuery isRootFolder()Only select folder content items which are on the root level. -
latest
CoreContentItemQuery latest()Only select content items with the latest version.
-