public static enum RegexRule.CastType extends Enum<RegexRule.CastType>
| Enum Constant and Description |
|---|
VT_DOUBLE |
VT_INTEGER |
VT_STRING |
| Modifier and Type | Method and Description |
|---|---|
static RegexRule.CastType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexRule.CastType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexRule.CastType VT_INTEGER
public static final RegexRule.CastType VT_DOUBLE
public static final RegexRule.CastType VT_STRING
public static RegexRule.CastType[] values()
for (RegexRule.CastType c : RegexRule.CastType.values()) System.out.println(c);
public static RegexRule.CastType 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 © 2024. All Rights Reserved.