Package | Description |
---|---|
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
org.quartz.impl.jdbcjobstore | |
org.quartz.impl.matchers | |
org.quartz.utils |
Modifier and Type | Interface and Description |
---|---|
interface |
Matcher<T extends Key<?>>
Matchers can be used in various
Scheduler API methods to
select the entities that should be operated upon. |
Modifier and Type | Class and Description |
---|---|
class |
JobKey
Uniquely identifies a
JobDetail . |
class |
TriggerKey
Uniquely identifies a
Trigger . |
Modifier and Type | Method and Description |
---|---|
Key<?> |
DriverDelegate.selectTriggerForFireTime(Connection conn,
long fireTime)
Select the trigger that will be fired at the given fire time.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Field and Description |
---|---|
protected T |
KeyMatcher.compareTo |
Modifier and Type | Method and Description |
---|---|
static <U extends Key<?>> |
AndMatcher.and(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an AndMatcher that depends upon the result of both of the given matchers.
|
static <T extends Key<T>> |
GroupMatcher.anyGroup()
Create a GroupMatcher that matches groups starting with the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupContains(String compareTo)
Create a GroupMatcher that matches groups containing the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupEndsWith(String compareTo)
Create a GroupMatcher that matches groups ending with the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupEquals(String compareTo)
Create a GroupMatcher that matches groups equaling the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupStartsWith(String compareTo)
Create a GroupMatcher that matches groups starting with the given string.
|
static <U extends Key<?>> |
KeyMatcher.keyEquals(U compareTo)
Create a KeyMatcher that matches Keys that equal the given key.
|
static <U extends Key<?>> |
NameMatcher.nameContains(String compareTo)
Create a NameMatcher that matches names containing the given string.
|
static <U extends Key<?>> |
NameMatcher.nameEndsWith(String compareTo)
Create a NameMatcher that matches names ending with the given string.
|
static <T extends Key<?>> |
NameMatcher.nameEquals(String compareTo)
Create a NameMatcher that matches names equaling the given string.
|
static <U extends Key<?>> |
NameMatcher.nameStartsWith(String compareTo)
Create a NameMatcher that matches names starting with the given string.
|
static <U extends Key<?>> |
NotMatcher.not(Matcher<U> operand)
Create a NotMatcher that reverses the result of the given matcher.
|
static <U extends Key<?>> |
OrMatcher.or(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an OrMatcher that depends upon the result of at least one of the given matchers.
|
Modifier and Type | Method and Description |
---|---|
int |
Key.compareTo(Key<T> o) |
Copyright 2001-2019, Terracotta, Inc.