public static enum Selector.Match extends Enum<Selector.Match>
@Selector
.Enum Constant and Description |
---|
ALL_REMAINING
Capture all remaining times.
|
SINGLE
Capture a single item.
|
Modifier and Type | Method and Description |
---|---|
static Selector.Match |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selector.Match[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selector.Match SINGLE
String
source.public static final Selector.Match ALL_REMAINING
String[]
source.public static Selector.Match[] values()
for (Selector.Match c : Selector.Match.values()) System.out.println(c);
public static Selector.Match 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 nullCopyright © 2020 Pivotal Software, Inc.. All rights reserved.