public enum BusinessIntervalOperation extends java.lang.Enum<BusinessIntervalOperation>
BusinessIntervalElement
Enum Constant and Description |
---|
EXCLUDE
Represents an exclusion of a time period in a business interval.
|
INCLUDE
Represents an inclusion of a time period in a business interval.
|
INTERSECTION
Represents an intersection of a time period in a business interval.
|
Modifier and Type | Method and Description |
---|---|
static BusinessIntervalOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BusinessIntervalOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusinessIntervalOperation EXCLUDE
public static final BusinessIntervalOperation INCLUDE
public static final BusinessIntervalOperation INTERSECTION
public static BusinessIntervalOperation[] values()
for (BusinessIntervalOperation c : BusinessIntervalOperation.values()) System.out.println(c);
public static BusinessIntervalOperation 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© 2000-2025 Flux Corporation. All rights reserved.