Interface IParsedPlaceholder
-
- All Superinterfaces:
Serializable
public interface IParsedPlaceholder extends Serializable
Data about a placeholder parsed from its string representation.- Since:
- 7.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContent()
String
getRepresentation()
IStaticPlaceholder
getStaticDescriptor()
EPlaceholderSyntaxKind
getType()
-
-
-
Method Detail
-
getContent
String getContent()
- Returns:
- The content of the placeholder, e.g.
PROJECT_ID
.
-
getRepresentation
String getRepresentation()
- Returns:
- The external representation of the placeholder, e.g.
[%$PROJECT_ID%]
.
-
getType
EPlaceholderSyntaxKind getType()
- Returns:
- The syntax used by the placeholder.
-
getStaticDescriptor
@Nullable IStaticPlaceholder getStaticDescriptor()
- Returns:
- For builtin non-dynamic placeholders, the descriptor with additional meta data about he placeholder.
-
-