public static enum NumberParsing.ParseResultType extends Enum<NumberParsing.ParseResultType>
| Enum Constant and Description |
|---|
DECIMAL |
NOT_NUMBER |
WHOLE_NUMBER |
| Modifier and Type | Method and Description |
|---|---|
static NumberParsing.ParseResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberParsing.ParseResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberParsing.ParseResultType NOT_NUMBER
public static final NumberParsing.ParseResultType WHOLE_NUMBER
public static final NumberParsing.ParseResultType DECIMAL
public static NumberParsing.ParseResultType[] values()
for (NumberParsing.ParseResultType c : NumberParsing.ParseResultType.values()) System.out.println(c);
public static NumberParsing.ParseResultType 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 © 2023 Apache NiFi Project. All rights reserved.