public static enum UniqueProcessor.UniqueType extends Enum<UniqueProcessor.UniqueType>
Enum Constant and Description |
---|
FIRST
Select the first feature value in the list.
|
LAST
Select the last feature value in the list.
|
MAX
Select the maximum feature value in the list.
|
MIN
Select the minimum feature value in the list.
|
SUM
Add together all the feature values.
|
Modifier and Type | Method and Description |
---|---|
static UniqueProcessor.UniqueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UniqueProcessor.UniqueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UniqueProcessor.UniqueType FIRST
public static final UniqueProcessor.UniqueType LAST
public static final UniqueProcessor.UniqueType MAX
public static final UniqueProcessor.UniqueType MIN
public static final UniqueProcessor.UniqueType SUM
public static UniqueProcessor.UniqueType[] values()
for (UniqueProcessor.UniqueType c : UniqueProcessor.UniqueType.values()) System.out.println(c);
public static UniqueProcessor.UniqueType 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.