public static enum Quantifier.QuantifierProperty extends Enum<Quantifier.QuantifierProperty>
Quantifier
can have. Not all combinations are valid.Enum Constant and Description |
---|
GREEDY |
LOOPING |
OPTIONAL |
SINGLE |
TIMES |
Modifier and Type | Method and Description |
---|---|
static Quantifier.QuantifierProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Quantifier.QuantifierProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Quantifier.QuantifierProperty SINGLE
public static final Quantifier.QuantifierProperty LOOPING
public static final Quantifier.QuantifierProperty TIMES
public static final Quantifier.QuantifierProperty OPTIONAL
public static final Quantifier.QuantifierProperty GREEDY
public static Quantifier.QuantifierProperty[] values()
for (Quantifier.QuantifierProperty c : Quantifier.QuantifierProperty.values()) System.out.println(c);
public static Quantifier.QuantifierProperty 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 © 2014–2024 The Apache Software Foundation. All rights reserved.