public static enum MaterializedView.RollbackSegmentType extends java.lang.Enum<MaterializedView.RollbackSegmentType>
| Enum Constant and Description |
|---|
LOCAL
Specifies that the remote rollback segment to be used for the local refresh group that contains the materialized view
|
MASTER
Specifies the remote rollback segment to be used at the remote master site for the individual materialized view.
|
NONE
Deprecated.
Use
null rather than NONE. |
| Modifier and Type | Method and Description |
|---|---|
static MaterializedView.RollbackSegmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MaterializedView.RollbackSegmentType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
@Deprecated public static final MaterializedView.RollbackSegmentType NONE
null rather than NONE.public static final MaterializedView.RollbackSegmentType LOCAL
public static final MaterializedView.RollbackSegmentType MASTER
public static MaterializedView.RollbackSegmentType[] values()
for (MaterializedView.RollbackSegmentType c : MaterializedView.RollbackSegmentType.values())
System.out.println(c);
public static MaterializedView.RollbackSegmentType 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 null