public static final class ImpExConstants.Syntax.CodeMarkers extends Object
| Modifier and Type | Field and Description |
|---|---|
static String |
AFTER_EACH
Code marked with the 'afterEach' marker will be executed for each following value line after
processing the line.
|
static String |
AFTER_EACH_END
Marks the end of a
afterEach scope. |
static String[] |
ALL
Collection of all provided code markers.
ATTENTION: Always put closing before opening marker !!! |
static String |
BEFORE_EACH
Code marked with the 'before each' marker will be executed for each following value line after
parsing the line but before processing the line.
|
static String |
BEFORE_EACH_END
Marks the end of a
before each scope. |
static String |
END_IF
Marks the end of a
if scope. |
static String |
FOR_EACH
Deprecated.
use
AFTER_EACH instead |
static String |
FOR_EACH_END
Deprecated.
use
AFTER_EACH_END instead |
static String |
IF
By using the 'if' marker you can define conditional statements within ImpEx scripts.
|
| Constructor and Description |
|---|
CodeMarkers() |
public static final String BEFORE_EACH
before each end marker. A boxing of these markers
is not possible. The code block of the last defined marker of this kind will be used.public static final String BEFORE_EACH_END
before each scope.@Deprecated public static final String FOR_EACH
AFTER_EACH insteadfor each end marker. The code
block of the last defined marker of this kind will be used.@Deprecated public static final String FOR_EACH_END
AFTER_EACH_END insteadfor each scope.public static final String AFTER_EACH
afterEach:end marker. The
code block of the last defined marker of this kind will be used.public static final String AFTER_EACH_END
afterEach scope.public static final String IF
end if skipped or not (also header and value lines will be
skipped). The marker can be boxed as in java language.public static final String END_IF
if scope.public static final String[] ALL
Copyright © 2017 SAP SE. All Rights Reserved.