public enum ManagedPipelineMode extends Enum<ManagedPipelineMode>
| Enum Constant and Description |
|---|
CLASSIC
Enum value Classic.
|
INTEGRATED
Enum value Integrated.
|
| Modifier and Type | Method and Description |
|---|---|
static ManagedPipelineMode |
fromString(String value)
Parses a serialized value to a ManagedPipelineMode instance.
|
String |
toString() |
static ManagedPipelineMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ManagedPipelineMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ManagedPipelineMode INTEGRATED
public static final ManagedPipelineMode CLASSIC
public static ManagedPipelineMode[] values()
for (ManagedPipelineMode c : ManagedPipelineMode.values()) System.out.println(c);
public static ManagedPipelineMode 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 ManagedPipelineMode fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ManagedPipelineMode>Copyright © 2019. All rights reserved.