Enum CSVConversionConfig.Datatype
- java.lang.Object
-
- java.lang.Enum<CSVConversionConfig.Datatype>
-
- org.processmining.log.csvimport.config.CSVConversionConfig.Datatype
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CSVConversionConfig.Datatype>
- Enclosing class:
- CSVConversionConfig
public static enum CSVConversionConfig.Datatype extends java.lang.Enum<CSVConversionConfig.Datatype>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANCONTINUOUSDISCRETELITERALTIME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CSVConversionConfig.DatatypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CSVConversionConfig.Datatype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LITERAL
public static final CSVConversionConfig.Datatype LITERAL
-
DISCRETE
public static final CSVConversionConfig.Datatype DISCRETE
-
CONTINUOUS
public static final CSVConversionConfig.Datatype CONTINUOUS
-
TIME
public static final CSVConversionConfig.Datatype TIME
-
BOOLEAN
public static final CSVConversionConfig.Datatype BOOLEAN
-
-
Method Detail
-
values
public static CSVConversionConfig.Datatype[] 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 (CSVConversionConfig.Datatype c : CSVConversionConfig.Datatype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CSVConversionConfig.Datatype 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
-
-