public static enum DatabaseParameterSummary.IsSystemModifiable extends Enum<DatabaseParameterSummary.IsSystemModifiable>
Indicates whether the parameter can be changed with ALTER SYSTEM
and when the change takes effect:
ALTER SYSTEM
regardless of the type of parameter file used to start the instance. The change takes effect immediately.ALTER SYSTEM
regardless of the type of parameter file used to start the instance. The change takes effect in subsequent sessions.ALTER SYSTEM
unless a server parameter file was used to start the instance. The change takes effect in subsequent instances.Enum Constant and Description |
---|
Deferred |
False |
Immediate |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this
version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseParameterSummary.IsSystemModifiable |
create(String key) |
String |
getValue() |
static DatabaseParameterSummary.IsSystemModifiable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseParameterSummary.IsSystemModifiable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseParameterSummary.IsSystemModifiable Immediate
public static final DatabaseParameterSummary.IsSystemModifiable Deferred
public static final DatabaseParameterSummary.IsSystemModifiable False
public static final DatabaseParameterSummary.IsSystemModifiable UnknownEnumValue
public static DatabaseParameterSummary.IsSystemModifiable[] values()
for (DatabaseParameterSummary.IsSystemModifiable c : DatabaseParameterSummary.IsSystemModifiable.values()) System.out.println(c);
public static DatabaseParameterSummary.IsSystemModifiable 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 nullpublic String getValue()
public static DatabaseParameterSummary.IsSystemModifiable create(String key)
Copyright © 2016–2022. All rights reserved.