public static enum OracleInMemoryProperties.InMemoryDistribute extends java.lang.Enum<OracleInMemoryProperties.InMemoryDistribute>
| Enum Constant and Description |
|---|
AUTO
Oracle Database controls how data is distributed across Oracle RAC
instances
|
BY_PARTITION
Data in partitions is distributed to different Oracle RAC instances.
|
BY_ROWID_RANGE
Data in certain ranges of rowids is distributed to different Oracle
RAC instances.
|
BY_SUBPARTITION
Data in subpartitions is distributed to different Oracle RAC
instances.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Custom toString() implementation that returns the syntax for the
chosen distribute option.
|
static OracleInMemoryProperties.InMemoryDistribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OracleInMemoryProperties.InMemoryDistribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleInMemoryProperties.InMemoryDistribute AUTO
public static final OracleInMemoryProperties.InMemoryDistribute BY_ROWID_RANGE
public static final OracleInMemoryProperties.InMemoryDistribute BY_PARTITION
public static final OracleInMemoryProperties.InMemoryDistribute BY_SUBPARTITION
public static OracleInMemoryProperties.InMemoryDistribute[] values()
for (OracleInMemoryProperties.InMemoryDistribute c : OracleInMemoryProperties.InMemoryDistribute.values()) System.out.println(c);
public static OracleInMemoryProperties.InMemoryDistribute 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.InMemoryDistribute>