public static enum YamlContract.RegexType extends Enum<YamlContract.RegexType>
Enum Constant and Description |
---|
as_boolean |
as_double |
as_float |
as_integer |
as_long |
as_short |
as_string |
Modifier and Type | Method and Description |
---|---|
static YamlContract.RegexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YamlContract.RegexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YamlContract.RegexType as_integer
public static final YamlContract.RegexType as_double
public static final YamlContract.RegexType as_float
public static final YamlContract.RegexType as_long
public static final YamlContract.RegexType as_short
public static final YamlContract.RegexType as_boolean
public static final YamlContract.RegexType as_string
public static YamlContract.RegexType[] values()
for (YamlContract.RegexType c : YamlContract.RegexType.values()) System.out.println(c);
public static YamlContract.RegexType 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 © 2016–2021 Spring. All rights reserved.