public static enum TimelyConfiguration.TimelineRepresentation extends java.lang.Enum<TimelyConfiguration.TimelineRepresentation>
Enum Constant and Description |
---|
FAITHFUL
Complete timeline (series of appearance & disappearance) is maintained per tuple.
|
FIRST_ONLY
Only the first moment (timestamp) of appearance is maintained per tuple.
|
Modifier and Type | Method and Description |
---|---|
static TimelyConfiguration.TimelineRepresentation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimelyConfiguration.TimelineRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimelyConfiguration.TimelineRepresentation FIRST_ONLY
public static final TimelyConfiguration.TimelineRepresentation FAITHFUL
public static TimelyConfiguration.TimelineRepresentation[] values()
for (TimelyConfiguration.TimelineRepresentation c : TimelyConfiguration.TimelineRepresentation.values()) System.out.println(c);
public static TimelyConfiguration.TimelineRepresentation 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