public enum TimeStampLimitMode extends Enum<TimeStampLimitMode>
Enum Constant and Description |
---|
AT_OR_AFTER
The specified limit shall be interpreted so that a sample at or - if
there is no sample at the specified limit - a sample after the specified
limit is included.
|
AT_OR_BEFORE
The specified limit shall be interpreted so that a sample at or - if
there is no sample at the specified limit - a sample before the specified
limit is included.
|
Modifier and Type | Method and Description |
---|---|
static TimeStampLimitMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeStampLimitMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeStampLimitMode AT_OR_AFTER
public static final TimeStampLimitMode AT_OR_BEFORE
public static TimeStampLimitMode[] values()
for (TimeStampLimitMode c : TimeStampLimitMode.values()) System.out.println(c);
public static TimeStampLimitMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2011–2017 aquenos GmbH. All rights reserved.