public enum DbStats extends Enum<DbStats>
| Enum Constant and Description |
|---|
BLOCK_SIZE |
COMMITED |
FILE_VERSION |
HEADER_SIZE |
LATEST_TRANSACTION |
| Modifier and Type | Method and Description |
|---|---|
static DbStats |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbStats[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbStats HEADER_SIZE
public static final DbStats FILE_VERSION
public static final DbStats LATEST_TRANSACTION
public static final DbStats COMMITED
public static final DbStats BLOCK_SIZE
public static DbStats[] values()
for (DbStats c : DbStats.values()) System.out.println(c);
public static DbStats 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 © 2013–2014 Nikolche Mihajlovski. All rights reserved.