public enum CellType extends Enum<CellType>
| Enum Constant and Description |
|---|
DeleteCell |
GetCell |
PutCell |
ResultCell |
ScanCell |
| Modifier and Type | Method and Description |
|---|---|
static CellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellType PutCell
public static final CellType DeleteCell
public static final CellType GetCell
public static final CellType ScanCell
public static final CellType ResultCell
public static CellType[] values()
for (CellType c : CellType.values()) System.out.println(c);
public static CellType 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 © 2023. All rights reserved.