public static enum UserDao.Field extends java.lang.Enum<UserDao.Field> implements DaoFieldEnum
DaoFieldEnum.OnPersist
Enum Constant and Description |
---|
BIRTHDATE |
CREATED |
DISPLAY_NAME |
ENCRYPTED_PASSWORD |
FIRST_NAME |
ID |
IS_ACTIVE |
LAST_AUTHENTICATED |
LAST_NAME |
LOGIN |
MUST_BE_EMAIL_SYNTAX |
SALT |
TIMEZONE |
UPDATED |
USER_TYPE |
VERIFIED_EMAIL |
Modifier and Type | Method and Description |
---|---|
QueryTerm |
getQueryTerm(java.lang.Object value) |
QueryTerm |
getQueryTerm(RelationalOpType op,
java.lang.Object value) |
static UserDao.Field |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserDao.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getOnPersist
public static final UserDao.Field ID
public static final UserDao.Field LOGIN
public static final UserDao.Field MUST_BE_EMAIL_SYNTAX
public static final UserDao.Field VERIFIED_EMAIL
public static final UserDao.Field IS_ACTIVE
public static final UserDao.Field USER_TYPE
public static final UserDao.Field FIRST_NAME
public static final UserDao.Field LAST_NAME
public static final UserDao.Field DISPLAY_NAME
public static final UserDao.Field BIRTHDATE
public static final UserDao.Field TIMEZONE
public static final UserDao.Field LAST_AUTHENTICATED
public static final UserDao.Field CREATED
public static final UserDao.Field UPDATED
public static final UserDao.Field ENCRYPTED_PASSWORD
public static final UserDao.Field SALT
public static UserDao.Field[] values()
for (UserDao.Field c : UserDao.Field.values()) System.out.println(c);
public static UserDao.Field valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic QueryTerm getQueryTerm(java.lang.Object value)
getQueryTerm
in interface DaoFieldEnum
public QueryTerm getQueryTerm(RelationalOpType op, java.lang.Object value)
getQueryTerm
in interface DaoFieldEnum