public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
AFTER |
BEFORE |
COINCIDES |
CONTAINS |
CUSTOM |
DURING |
EQUALS |
EXCLUDES |
FINISHED_BY |
FINISHES |
GREATER_OR_EQUAL |
GREATER_THAN |
IN |
INCLUDES |
LESS_OR_EQUAL |
LESS_THAN |
MATCHES |
MEETS |
MEMBER_OF |
MET_BY |
NONE |
NOT_CONTAINS |
NOT_EQUALS |
NOT_IN |
NOT_MATCHES |
NOT_MEMBER_OF |
OVERLAPPED_BY |
OVERLAPS |
SOUNDSLIKE |
STARTED_BY |
STARTS |
STR_ENDS_WITH |
STR_LENGHT |
STR_STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
boolean |
isRangeOperator() |
static Operator |
resolve(String operator) |
String |
toString() |
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator NONE
public static final Operator EQUALS
public static final Operator GREATER_THAN
public static final Operator LESS_THAN
public static final Operator GREATER_OR_EQUAL
public static final Operator LESS_OR_EQUAL
public static final Operator NOT_EQUALS
public static final Operator IN
public static final Operator NOT_IN
public static final Operator MATCHES
public static final Operator SOUNDSLIKE
public static final Operator AFTER
public static final Operator BEFORE
public static final Operator COINCIDES
public static final Operator STR_STARTS_WITH
public static final Operator STR_ENDS_WITH
public static final Operator STR_LENGHT
public static final Operator NOT_MATCHES
public static final Operator CONTAINS
public static final Operator NOT_CONTAINS
public static final Operator DURING
public static final Operator FINISHES
public static final Operator FINISHED_BY
public static final Operator INCLUDES
public static final Operator MEETS
public static final Operator MET_BY
public static final Operator OVERLAPS
public static final Operator OVERLAPPED_BY
public static final Operator STARTS
public static final Operator STARTED_BY
public static final Operator CUSTOM
public static final Operator MEMBER_OF
public static final Operator NOT_MEMBER_OF
public static final Operator EXCLUDES
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static Operator 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 boolean isRangeOperator()
Copyright © 2001–2020 JBoss by Red Hat. All rights reserved.