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