public static enum AggregateDataSource.IterationOrder extends Enum<AggregateDataSource.IterationOrder>
Enum Constant and Description |
---|
ROUNDROBIN
Round-robins the iterators (i.e., chooses one from each in turn).
|
SEQUENTIAL
Iterates each dataset sequentially, in the order of the sources list.
|
Modifier and Type | Method and Description |
---|---|
static AggregateDataSource.IterationOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateDataSource.IterationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateDataSource.IterationOrder ROUNDROBIN
public static final AggregateDataSource.IterationOrder SEQUENTIAL
public static AggregateDataSource.IterationOrder[] values()
for (AggregateDataSource.IterationOrder c : AggregateDataSource.IterationOrder.values()) System.out.println(c);
public static AggregateDataSource.IterationOrder 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 © 2015–2021 Oracle and/or its affiliates. All rights reserved.