public enum Operation extends Enum<Operation>
Enum Constant and Description |
---|
count
Count operation
|
dump
Dump operation
|
quickdump
Quick dump operation, where columns do not need to be retrieved (minimum
infolevel), but the order of rows may not be preserved from run to run.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
Query |
getQuery()
Query.
|
String |
getTitle()
Operation title.
|
static Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation count
public static final Operation dump
public static final Operation quickdump
public static Operation[] values()
for (Operation c : Operation.values()) System.out.println(c);
public static Operation 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 nullpublic String getDescription()
public String getTitle()
public Query getQuery()
Copyright © 2000-2020 Sualeh Fatehi. All rights reserved.