Interface TranslationQuery
-
- All Superinterfaces:
Query<TranslationQuery,Translation>
- All Known Implementing Classes:
TranslationQueryImpl
public interface TranslationQuery extends Query<TranslationQuery,Translation>
Query for querying translations.- Author:
- Filip Hrisafov
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TranslationQuery
id(String id)
TranslationQuery
key(String key)
TranslationQuery
locale(String locale)
TranslationQuery
scopeId(String scopeId)
TranslationQuery
scopeType(String scopeType)
TranslationQuery
value(String value)
TranslationQuery
valueLike(String valueLike)
TranslationQuery
valueLikeIgnoreCase(String valueLikeIgnoreCase)
-
-
-
Method Detail
-
id
TranslationQuery id(String id)
-
scopeId
TranslationQuery scopeId(String scopeId)
-
scopeType
TranslationQuery scopeType(String scopeType)
-
key
TranslationQuery key(String key)
-
locale
TranslationQuery locale(String locale)
-
value
TranslationQuery value(String value)
-
valueLike
TranslationQuery valueLike(String valueLike)
-
valueLikeIgnoreCase
TranslationQuery valueLikeIgnoreCase(String valueLikeIgnoreCase)
-
-