|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Objectorg.activiti.engine.impl.db.ListQueryParameterObject
org.activiti.engine.impl.AbstractQuery<UserQuery,User>
org.activiti.engine.impl.UserQueryImpl
public class UserQueryImpl
字段摘要 | |
---|---|
protected String |
email
|
protected String |
emailLike
|
protected String |
firstName
|
protected String |
firstNameLike
|
protected String |
fullNameLike
|
protected String |
groupId
|
protected String |
id
|
protected String |
lastName
|
protected String |
lastNameLike
|
protected String |
procDefId
|
从类 org.activiti.engine.impl.AbstractQuery 继承的字段 |
---|
commandContext, commandExecutor, orderBy, orderProperty, resultType, SORTORDER_ASC, SORTORDER_DESC |
从类 org.activiti.engine.impl.db.ListQueryParameterObject 继承的字段 |
---|
databaseType, firstResult, maxResults, parameter |
构造方法摘要 | |
---|---|
UserQueryImpl()
|
|
UserQueryImpl(CommandContext commandContext)
|
|
UserQueryImpl(CommandExecutor commandExecutor)
|
方法摘要 | |
---|---|
long |
executeCount(CommandContext commandContext)
|
List<User> |
executeList(CommandContext commandContext,
Page page)
Executes the actual query to retrieve the list of results. |
String |
getEmail()
|
String |
getEmailLike()
|
String |
getFirstName()
|
String |
getFirstNameLike()
|
String |
getFullNameLike()
|
String |
getGroupId()
|
String |
getId()
|
String |
getLastName()
|
String |
getLastNameLike()
|
UserQuery |
memberOfGroup(String groupId)
Only select User s that belong to the given group. |
UserQuery |
orderByUserEmail()
Order by user email (needs to be followed by Query.asc() or Query.desc() ). |
UserQuery |
orderByUserFirstName()
Order by user first name (needs to be followed by Query.asc() or Query.desc() ). |
UserQuery |
orderByUserId()
Order by user id (needs to be followed by Query.asc() or Query.desc() ). |
UserQuery |
orderByUserLastName()
Order by user last name (needs to be followed by Query.asc() or Query.desc() ). |
UserQuery |
potentialStarter(String procDefId)
Only select User S that are potential starter for the given process definition. |
UserQuery |
userEmail(String email)
Only those User s with the given email addres. |
UserQuery |
userEmailLike(String emailLike)
Only select User s where the email matches the given parameter. |
UserQuery |
userFirstName(String firstName)
Only select User s with the given firstName. |
UserQuery |
userFirstNameLike(String firstNameLike)
Only select User s where the first name matches the given parameter. |
UserQuery |
userFullNameLike(String fullNameLike)
Only select User s where the full name matches the given parameters. |
UserQuery |
userId(String id)
Only select User s with the given id/ |
UserQuery |
userLastName(String lastName)
Only select User s with the given lastName. |
UserQuery |
userLastNameLike(String lastNameLike)
Only select User s where the last name matches the given parameter. |
从类 org.activiti.engine.impl.AbstractQuery 继承的方法 |
---|
addOrder, asc, checkQueryOk, count, desc, direction, execute, executeSingleResult, getOrderBy, list, listPage, orderBy, setCommandExecutor, singleResult |
从类 org.activiti.engine.impl.db.ListQueryParameterObject 继承的方法 |
---|
getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getParameter, setDatabaseType, setFirstResult, setMaxResults, setParameter |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
从接口 org.activiti.engine.query.Query 继承的方法 |
---|
asc, count, desc, list, listPage, singleResult |
字段详细信息 |
---|
protected String id
protected String firstName
protected String firstNameLike
protected String lastName
protected String lastNameLike
protected String fullNameLike
protected String email
protected String emailLike
protected String groupId
protected String procDefId
构造方法详细信息 |
---|
public UserQueryImpl()
public UserQueryImpl(CommandContext commandContext)
public UserQueryImpl(CommandExecutor commandExecutor)
方法详细信息 |
---|
public UserQuery userId(String id)
UserQuery
复制的描述User
s with the given id/
UserQuery
中的 userId
public UserQuery userFirstName(String firstName)
UserQuery
复制的描述User
s with the given firstName.
UserQuery
中的 userFirstName
public UserQuery userFirstNameLike(String firstNameLike)
UserQuery
复制的描述User
s where the first name matches the given parameter.
The syntax is that of SQL, eg. %activivi%.
UserQuery
中的 userFirstNameLike
public UserQuery userLastName(String lastName)
UserQuery
复制的描述User
s with the given lastName.
UserQuery
中的 userLastName
public UserQuery userLastNameLike(String lastNameLike)
UserQuery
复制的描述User
s where the last name matches the given parameter.
The syntax is that of SQL, eg. %activivi%.
UserQuery
中的 userLastNameLike
public UserQuery userFullNameLike(String fullNameLike)
UserQuery
复制的描述User
s where the full name matches the given parameters.
Both the first name and last name will be tried, ie in semi-sql:
where firstName like xxx or lastname like xxx
UserQuery
中的 userFullNameLike
public UserQuery userEmail(String email)
UserQuery
复制的描述User
s with the given email addres.
UserQuery
中的 userEmail
public UserQuery userEmailLike(String emailLike)
UserQuery
复制的描述User
s where the email matches the given parameter.
The syntax is that of SQL, eg. %activivi%.
UserQuery
中的 userEmailLike
public UserQuery memberOfGroup(String groupId)
UserQuery
复制的描述User
s that belong to the given group.
UserQuery
中的 memberOfGroup
public UserQuery potentialStarter(String procDefId)
UserQuery
复制的描述User
S that are potential starter for the given process definition.
UserQuery
中的 potentialStarter
public UserQuery orderByUserId()
UserQuery
复制的描述Query.asc()
or Query.desc()
).
UserQuery
中的 orderByUserId
public UserQuery orderByUserEmail()
UserQuery
复制的描述Query.asc()
or Query.desc()
).
UserQuery
中的 orderByUserEmail
public UserQuery orderByUserFirstName()
UserQuery
复制的描述Query.asc()
or Query.desc()
).
UserQuery
中的 orderByUserFirstName
public UserQuery orderByUserLastName()
UserQuery
复制的描述Query.asc()
or Query.desc()
).
UserQuery
中的 orderByUserLastName
public long executeCount(CommandContext commandContext)
AbstractQuery<UserQuery,User>
中的 executeCount
public List<User> executeList(CommandContext commandContext, Page page)
AbstractQuery
复制的描述
AbstractQuery<UserQuery,User>
中的 executeList
page
- used if the results must be paged. If null, no paging will be applied.public String getId()
public String getFirstName()
public String getFirstNameLike()
public String getLastName()
public String getLastNameLike()
public String getEmail()
public String getEmailLike()
public String getGroupId()
public String getFullNameLike()
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |