public static enum PatchInsertInstruction.Position extends Enum<PatchInsertInstruction.Position> implements BmcEnum
Where to insert the value, 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 PatchInsertInstruction.Position |
create(String key) |
String |
getValue() |
static PatchInsertInstruction.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PatchInsertInstruction.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatchInsertInstruction.Position Before
public static final PatchInsertInstruction.Position After
public static PatchInsertInstruction.Position[] values()
for (PatchInsertInstruction.Position c : PatchInsertInstruction.Position.values()) System.out.println(c);
public static PatchInsertInstruction.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 PatchInsertInstruction.Position create(String key)
Copyright © 2016–2024. All rights reserved.