|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Key | |
---|---|
org.quartz | The main package of Quartz, containing the client-side interfaces. |
org.quartz.impl.jdbcjobstore | |
org.quartz.impl.matchers | |
org.quartz.utils |
Uses of Key in org.quartz |
---|
Classes in org.quartz with type parameters of type Key | |
---|---|
interface |
Matcher<T extends Key<?>>
Matchers can be used in various Scheduler API methods to
select the entities that should be operated upon. |
Subclasses of Key in org.quartz | |
---|---|
class |
JobKey
Uniquely identifies a JobDetail . |
class |
TriggerKey
Uniquely identifies a Trigger . |
Uses of Key in org.quartz.impl.jdbcjobstore |
---|
Methods in org.quartz.impl.jdbcjobstore that return Key | |
---|---|
Key<?> |
DriverDelegate.selectTriggerForFireTime(Connection conn,
long fireTime)
Select the trigger that will be fired at the given fire time. |
Uses of Key in org.quartz.impl.matchers |
---|
Classes in org.quartz.impl.matchers with type parameters of type Key | |
---|---|
class |
AndMatcher<T extends Key<?>>
Matches using an AND operator on two Matcher operands. |
class |
EverythingMatcher<T extends Key<?>>
Matches on the complete key being equal (both name and group). |
class |
GroupMatcher<T extends Key<?>>
Matches on group (ignores name) property of Keys. |
class |
KeyMatcher<T extends Key<?>>
Matches on the complete key being equal (both name and group). |
class |
NameMatcher<T extends Key<?>>
Matches on name (ignores group) property of Keys. |
class |
NotMatcher<T extends Key<?>>
Matches using an NOT operator on another Matcher. |
class |
OrMatcher<T extends Key<?>>
Matches using an OR operator on two Matcher operands. |
class |
StringMatcher<T extends Key<?>>
An abstract base class for some types of matchers. |
Fields in org.quartz.impl.matchers declared as Key | |
---|---|
protected T |
KeyMatcher.compareTo
|
Methods in org.quartz.impl.matchers with type parameters of type Key | ||
---|---|---|
static
|
AndMatcher.and(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an AndMatcher that depends upon the result of both of the given matchers. |
|
static
|
GroupMatcher.anyGroup()
Create a GroupMatcher that matches groups starting with the given string. |
|
static
|
GroupMatcher.groupContains(String compareTo)
Create a GroupMatcher that matches groups containing the given string. |
|
static
|
GroupMatcher.groupEndsWith(String compareTo)
Create a GroupMatcher that matches groups ending with the given string. |
|
static
|
GroupMatcher.groupEquals(String compareTo)
Create a GroupMatcher that matches groups equaling the given string. |
|
static
|
GroupMatcher.groupStartsWith(String compareTo)
Create a GroupMatcher that matches groups starting with the given string. |
|
static
|
KeyMatcher.keyEquals(U compareTo)
Create a KeyMatcher that matches Keys that equal the given key. |
|
static
|
NameMatcher.nameContains(String compareTo)
Create a NameMatcher that matches names containing the given string. |
|
static
|
NameMatcher.nameEndsWith(String compareTo)
Create a NameMatcher that matches names ending with the given string. |
|
static
|
NameMatcher.nameEquals(String compareTo)
Create a NameMatcher that matches names equaling the given string. |
|
static
|
NameMatcher.nameStartsWith(String compareTo)
Create a NameMatcher that matches names starting with the given string. |
|
static
|
NotMatcher.not(Matcher<U> operand)
Create a NotMatcher that reverses the result of the given matcher. |
|
static
|
OrMatcher.or(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an OrMatcher that depends upon the result of at least one of the given matchers. |
Uses of Key in org.quartz.utils |
---|
Methods in org.quartz.utils with parameters of type Key | |
---|---|
int |
Key.compareTo(Key<T> o)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |