public enum BDBProduct extends java.lang.Enum<BDBProduct>
Enum Constant and Description |
---|
DB
BDB Native
|
DB_HA
BDB Native, High Availability
|
DB_Legacy
BDB Native, legacy API
|
DBX
BDB Native, with reduced concurrency to eliminate deadlocks.
|
JE
BDB Java Edition
|
Modifier and Type | Method and Description |
---|---|
static BDBProduct |
forString(java.lang.String name) |
static BDBProduct |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BDBProduct[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BDBProduct DB_Legacy
public static final BDBProduct DB
public static final BDBProduct DBX
public static final BDBProduct DB_HA
public static final BDBProduct JE
public static BDBProduct[] values()
for (BDBProduct c : BDBProduct.values()) System.out.println(c);
public static BDBProduct 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 nullpublic static BDBProduct forString(java.lang.String name)
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.