public static enum RegexQuantifiableOperator.QuantifierType extends Enum<RegexQuantifiableOperator.QuantifierType>
| Enum Constant and Description |
|---|
GREEDY |
POSSESSIVE |
RELUCTANT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RegexQuantifiableOperator.QuantifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexQuantifiableOperator.QuantifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexQuantifiableOperator.QuantifierType GREEDY
public static final RegexQuantifiableOperator.QuantifierType RELUCTANT
public static final RegexQuantifiableOperator.QuantifierType POSSESSIVE
public static RegexQuantifiableOperator.QuantifierType[] values()
for (RegexQuantifiableOperator.QuantifierType c : RegexQuantifiableOperator.QuantifierType.values()) System.out.println(c);
public static RegexQuantifiableOperator.QuantifierType 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 toString()
toString in class Enum<RegexQuantifiableOperator.QuantifierType>Copyright © 2021. All rights reserved.