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