public static enum PatchInsertMultipleInstruction.Position extends Enum<PatchInsertMultipleInstruction.Position> implements BmcEnum
Where to insert the values, relative to the first item matched by selectedItem
. If
selectedItem
is unspecified, then “BEFORE” specifies insertion at the first position
in an array and “AFTER” specifies insertion at the last position. If selectedItem
is
specified but results in an empty selection, then both values specify insertion at the last
position.
Modifier and Type | Method and Description |
---|---|
static PatchInsertMultipleInstruction.Position |
create(String key) |
String |
getValue() |
static PatchInsertMultipleInstruction.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PatchInsertMultipleInstruction.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatchInsertMultipleInstruction.Position Before
public static final PatchInsertMultipleInstruction.Position After
public static PatchInsertMultipleInstruction.Position[] values()
for (PatchInsertMultipleInstruction.Position c : PatchInsertMultipleInstruction.Position.values()) System.out.println(c);
public static PatchInsertMultipleInstruction.Position 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 PatchInsertMultipleInstruction.Position create(String key)
Copyright © 2016–2024. All rights reserved.