public enum SqlJetAutoVacuumMode extends java.lang.Enum<SqlJetAutoVacuumMode>
Enum Constant and Description |
---|
FULL
Do full auto-vacuum
|
INCR
Incremental vacuum
|
NONE
Do not do auto-vacuum
|
Modifier and Type | Method and Description |
---|---|
static SqlJetAutoVacuumMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SqlJetAutoVacuumMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlJetAutoVacuumMode NONE
public static final SqlJetAutoVacuumMode FULL
public static final SqlJetAutoVacuumMode INCR
public static SqlJetAutoVacuumMode[] values()
for (SqlJetAutoVacuumMode c : SqlJetAutoVacuumMode.values()) System.out.println(c);
public static SqlJetAutoVacuumMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2010 TMate Software Ltd. All Rights Reserved.