public enum EEntryType extends java.lang.Enum<EEntryType>
Blink
,
Fixation
,
SingleSample
Enum Constant and Description |
---|
ET_BLINK
Blink
|
ET_FIXATION
Fixation of gaze data samples
|
ET_SAMPLE
Single Sample of gaze data
|
Modifier and Type | Method and Description |
---|---|
static EEntryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EEntryType ET_SAMPLE
public static final EEntryType ET_FIXATION
public static final EEntryType ET_BLINK
public static EEntryType[] values()
for (EEntryType c : EEntryType.values()) System.out.println(c);
public static EEntryType 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