public static final class ImpExConstants.Syntax.CodeMarkers
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
AFTER_EACH
Code marked with the 'afterEach' marker will be executed for each following value line after
processing the line.
|
static java.lang.String |
AFTER_EACH_END
Marks the end of a
afterEach scope. |
static java.lang.String[] |
ALL
Collection of all provided code markers.
ATTENTION: Always put closing before opening marker !!! |
static java.lang.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 java.lang.String |
BEFORE_EACH_END
Marks the end of a
before each scope. |
static java.lang.String |
END_IF
Marks the end of a
if scope. |
static java.lang.String |
FOR_EACH
Deprecated.
since ages - use
AFTER_EACH instead |
static java.lang.String |
FOR_EACH_END
Deprecated.
since ages - use
AFTER_EACH_END instead |
static java.lang.String |
IF
By using the 'if' marker you can define conditional statements within ImpEx scripts.
|
| Constructor and Description |
|---|
CodeMarkers() |
public static final java.lang.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 java.lang.String BEFORE_EACH_END
before each scope.@Deprecated public static final java.lang.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 java.lang.String FOR_EACH_END
AFTER_EACH_END insteadfor each scope.public static final java.lang.String AFTER_EACH
afterEach:end marker. The
code block of the last defined marker of this kind will be used.public static final java.lang.String AFTER_EACH_END
afterEach scope.public static final java.lang.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 java.lang.String END_IF
if scope.public static final java.lang.String[] ALL
Copyright © 2018 SAP SE. All Rights Reserved.