public static enum ListDatabaseParametersRequest.Source extends Enum<ListDatabaseParametersRequest.Source> implements BmcEnum
The source used to list database parameters. CURRENT
is used to get the database
parameters that are currently in effect for the database instance. SPFILE
is used to
list parameters from the server parameter file. Default is CURRENT
.
Modifier and Type | Method and Description |
---|---|
static ListDatabaseParametersRequest.Source |
create(String key) |
String |
getValue() |
static ListDatabaseParametersRequest.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListDatabaseParametersRequest.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListDatabaseParametersRequest.Source Current
public static final ListDatabaseParametersRequest.Source Spfile
public static ListDatabaseParametersRequest.Source[] values()
for (ListDatabaseParametersRequest.Source c : ListDatabaseParametersRequest.Source.values()) System.out.println(c);
public static ListDatabaseParametersRequest.Source 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 static ListDatabaseParametersRequest.Source create(String key)
Copyright © 2016–2024. All rights reserved.