public static enum OracleInMemoryProperties.InMemoryDuplicate extends java.lang.Enum<OracleInMemoryProperties.InMemoryDuplicate>
| Enum Constant and Description | 
|---|
DUPLICATE
Data is duplicated on one Oracle RAC instance, resulting in the data
 existing on a total of two Oracle RAC instances. 
 | 
DUPLICATE_ALL
Data is duplicated across all Oracle RAC instances. 
 | 
NO_DUPLICATE
Data is not duplicated across Oracle RAC instances. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
toString()
Custom toString() implementation that returns the syntax for the
 duplicate option. 
 | 
static OracleInMemoryProperties.InMemoryDuplicate | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static OracleInMemoryProperties.InMemoryDuplicate[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OracleInMemoryProperties.InMemoryDuplicate DUPLICATE
public static final OracleInMemoryProperties.InMemoryDuplicate DUPLICATE_ALL
public static final OracleInMemoryProperties.InMemoryDuplicate NO_DUPLICATE
public static OracleInMemoryProperties.InMemoryDuplicate[] values()
for (OracleInMemoryProperties.InMemoryDuplicate c : OracleInMemoryProperties.InMemoryDuplicate.values()) System.out.println(c);
public static OracleInMemoryProperties.InMemoryDuplicate 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 java.lang.String toString()
toString in class java.lang.Enum<OracleInMemoryProperties.InMemoryDuplicate>