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