public static enum OutputDetails.OutputType extends Enum<OutputDetails.OutputType> implements BmcEnum
The type of output location. Allowed values are: - OBJECT_STORAGE
: Object store
output location.
Enum Constant and Description |
---|
ObjectStorage |
Modifier and Type | Method and Description |
---|---|
static OutputDetails.OutputType |
create(String key) |
String |
getValue() |
static OutputDetails.OutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputDetails.OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputDetails.OutputType ObjectStorage
public static OutputDetails.OutputType[] values()
for (OutputDetails.OutputType c : OutputDetails.OutputType.values()) System.out.println(c);
public static OutputDetails.OutputType 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 OutputDetails.OutputType create(String key)
Copyright © 2016–2024. All rights reserved.