public static enum InteractiveCmd.Cmd extends Enum<InteractiveCmd.Cmd>
| Enum Constant and Description |
|---|
Select
Select.
|
UseCache
Use cache.
|
UseCacheManager
Use cache manager.
|
| Modifier and Type | Method and Description |
|---|---|
static InteractiveCmd.Cmd |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractiveCmd.Cmd[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractiveCmd.Cmd Select
public static final InteractiveCmd.Cmd UseCache
public static final InteractiveCmd.Cmd UseCacheManager
public static InteractiveCmd.Cmd[] values()
for (InteractiveCmd.Cmd c : InteractiveCmd.Cmd.values()) System.out.println(c);
public static InteractiveCmd.Cmd 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 © 2003–2024 Terracotta, Inc.. All rights reserved.