Enum TemplateParameterType
- java.lang.Object
-
- java.lang.Enum<TemplateParameterType>
-
- com.mendix.systemwideinterfaces.javaactions.parameters.TemplateParameterType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TemplateParameterType>
public enum TemplateParameterType extends java.lang.Enum<TemplateParameterType>
Represents the data type of aITemplateParameter
.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
stringValue()
Returns the string value of this parameter type.static TemplateParameterType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TemplateParameterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final TemplateParameterType BOOLEAN
-
DATETIME
public static final TemplateParameterType DATETIME
-
DECIMAL
public static final TemplateParameterType DECIMAL
-
INTEGER
public static final TemplateParameterType INTEGER
-
STRING
public static final TemplateParameterType STRING
-
-
Method Detail
-
values
public static TemplateParameterType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TemplateParameterType c : TemplateParameterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateParameterType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
stringValue
public java.lang.String stringValue()
Returns the string value of this parameter type.- Returns:
- the string value
-
-