|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface GroupQuery
Allows to programmatically query for Group
s.
方法摘要 | |
---|---|
GroupQuery |
groupId(String groupId)
Only select Group s with the given id. |
GroupQuery |
groupMember(String groupMemberUserId)
Only selects Group s where the given user is a member of. |
GroupQuery |
groupName(String groupName)
Only select Group s with the given name. |
GroupQuery |
groupNameLike(String groupNameLike)
Only select Group s where the name matches the given parameter. |
GroupQuery |
groupType(String groupType)
Only select Group s which have the given type. |
GroupQuery |
orderByGroupId()
Order by group id (needs to be followed by Query.asc() or Query.desc() ). |
GroupQuery |
orderByGroupName()
Order by group name (needs to be followed by Query.asc() or Query.desc() ). |
GroupQuery |
orderByGroupType()
Order by group type (needs to be followed by Query.asc() or Query.desc() ). |
GroupQuery |
potentialStarter(String procDefId)
Only select Group S that are potential starter for the given process definition. |
从接口 org.activiti.engine.query.Query 继承的方法 |
---|
asc, count, desc, list, listPage, singleResult |
方法详细信息 |
---|
GroupQuery groupId(String groupId)
Group
s with the given id.
GroupQuery groupName(String groupName)
Group
s with the given name.
GroupQuery groupNameLike(String groupNameLike)
Group
s where the name matches the given parameter.
The syntax to use is that of SQL, eg. %activiti%.
GroupQuery groupType(String groupType)
Group
s which have the given type.
GroupQuery groupMember(String groupMemberUserId)
Group
s where the given user is a member of.
GroupQuery potentialStarter(String procDefId)
Group
S that are potential starter for the given process definition.
GroupQuery orderByGroupId()
Query.asc()
or Query.desc()
).
GroupQuery orderByGroupName()
Query.asc()
or Query.desc()
).
GroupQuery orderByGroupType()
Query.asc()
or Query.desc()
).
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |