public enum PageTargetMethod extends java.lang.Enum<PageTargetMethod>
Enum Constant and Description |
---|
ALWAYS |
FIRST |
LAST |
NONE |
PAGE_NUMBER |
STRING_CONTAINS |
STRING_EMPTY |
STRING_ENDS_WITH |
STRING_MATCH |
STRING_MATCH_OR_BLANK |
STRING_NOT_CONTAINS |
STRING_NOT_EMPTY |
STRING_NOT_MATCH |
STRING_PATTERN |
STRING_STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
static PageTargetMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageTargetMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageTargetMethod NONE
public static final PageTargetMethod PAGE_NUMBER
public static final PageTargetMethod ALWAYS
public static final PageTargetMethod FIRST
public static final PageTargetMethod LAST
public static final PageTargetMethod STRING_STARTS_WITH
public static final PageTargetMethod STRING_MATCH
public static final PageTargetMethod STRING_ENDS_WITH
public static final PageTargetMethod STRING_CONTAINS
public static final PageTargetMethod STRING_NOT_MATCH
public static final PageTargetMethod STRING_NOT_CONTAINS
public static final PageTargetMethod STRING_EMPTY
public static final PageTargetMethod STRING_NOT_EMPTY
public static final PageTargetMethod STRING_MATCH_OR_BLANK
public static final PageTargetMethod STRING_PATTERN
public static PageTargetMethod[] values()
for (PageTargetMethod c : PageTargetMethod.values()) System.out.println(c);
public static PageTargetMethod 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 null