public enum IntegrationReference extends Enum<IntegrationReference>
| Enum Constant and Description |
|---|
END
Time tag at integration interval end.
|
MIDDLE
Time tag in the middle of integration interval.
|
START
Time tag at integration interval start.
|
| Modifier and Type | Method and Description |
|---|---|
static IntegrationReference |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrationReference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrationReference START
public static final IntegrationReference MIDDLE
public static final IntegrationReference END
public static IntegrationReference[] values()
for (IntegrationReference c : IntegrationReference.values()) System.out.println(c);
public static IntegrationReference 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 © 2002-2021 CS GROUP. All rights reserved.