public enum SimpleValueType extends Enum<SimpleValueType>
ParameterSimpleValue's value| Enum Constant and Description |
|---|
BOOLEAN
Represents a value of
BooleanType type |
DATETIME
Represents a value of
DateTimeType type |
NUMBER
Represents a value of
NumberType type |
STRING
Represents a value of
StringType or any other
SimpleType type which is not explicitly listed before. |
TIME
Represents a value of
TimeType type |
| Modifier and Type | Method and Description |
|---|---|
static SimpleValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleValueType BOOLEAN
BooleanType typepublic static final SimpleValueType DATETIME
DateTimeType typepublic static final SimpleValueType TIME
TimeType typepublic static final SimpleValueType NUMBER
NumberType typepublic static final SimpleValueType STRING
StringType or any other
SimpleType type which is not explicitly listed before.public static SimpleValueType[] values()
for (SimpleValueType c : SimpleValueType.values()) System.out.println(c);
public static SimpleValueType 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 © 2018 MuleSoft, Inc.. All rights reserved.