public enum MatcherType extends Enum<MatcherType>
| Enum Constant and Description |
|---|
CONTAINS |
CONTAINS_WORD |
END_WITH |
EQUAL |
NOT_CONTAINS |
NOT_END_WITH |
NOT_START_WITH |
START_WITH |
| Modifier and Type | Method and Description |
|---|---|
String |
getCssRepresentations()
Return the css representations of the matcher
|
static MatcherType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatcherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatcherType CONTAINS
public static final MatcherType START_WITH
public static final MatcherType END_WITH
public static final MatcherType CONTAINS_WORD
public static final MatcherType EQUAL
public static final MatcherType NOT_CONTAINS
public static final MatcherType NOT_START_WITH
public static final MatcherType NOT_END_WITH
public static MatcherType[] values()
for (MatcherType c : MatcherType.values()) System.out.println(c);
public static MatcherType 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 String getCssRepresentations()
Copyright © 2015 AConsulting. All Rights Reserved.