public static enum CqUserDb.DateLimit extends Enum<CqUserDb.DateLimit> implements CqUserDb.SearchKey<Date>
Enum Constant and Description |
---|
CREATED_AFTER
Matches an object created on or after the target date
|
CREATED_BEFORE
Matches an object created on or before the target date
|
MODIFIED_AFTER
Matches an object modified on or after the target date
|
MODIFIED_BEFORE
Matches an object modified on or before the target date
|
Modifier and Type | Method and Description |
---|---|
static CqUserDb.DateLimit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CqUserDb.DateLimit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CqUserDb.DateLimit CREATED_AFTER
public static final CqUserDb.DateLimit CREATED_BEFORE
public static final CqUserDb.DateLimit MODIFIED_AFTER
public static final CqUserDb.DateLimit MODIFIED_BEFORE
public static CqUserDb.DateLimit valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static CqUserDb.DateLimit[] values()
for (CqUserDb.DateLimit c : CqUserDb.DateLimit.values()) System.out.println(c);
Copyright © IBM 2018. All rights reserved.