@PublicEvolving public static enum SupportsRowLevelDelete.RowLevelDeleteMode extends Enum<SupportsRowLevelDelete.RowLevelDeleteMode>
Currently, two modes are supported:
Enum Constant and Description |
---|
DELETED_ROWS |
REMAINING_ROWS |
Modifier and Type | Method and Description |
---|---|
static SupportsRowLevelDelete.RowLevelDeleteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportsRowLevelDelete.RowLevelDeleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportsRowLevelDelete.RowLevelDeleteMode DELETED_ROWS
public static final SupportsRowLevelDelete.RowLevelDeleteMode REMAINING_ROWS
public static SupportsRowLevelDelete.RowLevelDeleteMode[] values()
for (SupportsRowLevelDelete.RowLevelDeleteMode c : SupportsRowLevelDelete.RowLevelDeleteMode.values()) System.out.println(c);
public static SupportsRowLevelDelete.RowLevelDeleteMode 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 © 2014–2024 The Apache Software Foundation. All rights reserved.