public enum XesAttributeType extends java.lang.Enum<XesAttributeType>
Enum Constant and Description |
---|
BOOLEAN
Boolean type.
|
DATETIME
UTC time type.
|
ID
UUID type.
|
INTEGERNUMBER
Integer number type.
|
LIST
List type.
|
NONE
Type if no type has been set.
|
REALNUMBER
Real number type.
|
STRING
String type.
|
Modifier and Type | Method and Description |
---|---|
static XesAttributeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XesAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XesAttributeType NONE
public static final XesAttributeType STRING
public static final XesAttributeType DATETIME
public static final XesAttributeType INTEGERNUMBER
public static final XesAttributeType REALNUMBER
public static final XesAttributeType BOOLEAN
public static final XesAttributeType ID
public static final XesAttributeType LIST
public static XesAttributeType[] values()
for (XesAttributeType c : XesAttributeType.values()) System.out.println(c);
public static XesAttributeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null