public enum DuplicateKeepOption extends Enum<DuplicateKeepOption>
in /cpp/include/cudf/stream_compaction.hpp,
from which this enum is based off of. Values should be kept in sync.
Enum Constant and Description |
---|
KEEP_ANY |
KEEP_FIRST |
KEEP_LAST |
KEEP_NONE |
Modifier and Type | Method and Description |
---|---|
static DuplicateKeepOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DuplicateKeepOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DuplicateKeepOption KEEP_ANY
public static final DuplicateKeepOption KEEP_FIRST
public static final DuplicateKeepOption KEEP_LAST
public static final DuplicateKeepOption KEEP_NONE
public static DuplicateKeepOption[] values()
for (DuplicateKeepOption c : DuplicateKeepOption.values()) System.out.println(c);
public static DuplicateKeepOption 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 © 2025. All rights reserved.