public enum MatcherType extends Enum<MatcherType>
| Enum Constant and Description |
|---|
CONTAINS
Contains.
|
CONTAINS_WORD
Contains word.
|
ENDS_WITH
Ends with.
|
EQUALS
Equal.
|
NOT_CONTAINS
Not contains.
|
NOT_ENDS_WITH
Not ends with.
|
NOT_STARTS_WITH
Not starts with.
|
STARTS_WITH
Starts with.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCssRepresentation()
Return the css representation of the matcher
|
String |
getLabel()
Get the label of this matcher type
|
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 STARTS_WITH
public static final MatcherType ENDS_WITH
public static final MatcherType CONTAINS_WORD
public static final MatcherType EQUALS
public static final MatcherType NOT_CONTAINS
public static final MatcherType NOT_STARTS_WITH
public static final MatcherType NOT_ENDS_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 getLabel()
public String getCssRepresentation()
Copyright © 2016 FluentLenium. All Rights Reserved.