Class SequenceOperations
- java.lang.Object
-
- net.ssehub.easy.varModel.cstEvaluation.SequenceOperations
-
public class SequenceOperations extends java.lang.ObjectImplements sequence operations.- Author:
- Holger Eichelberger
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static IOperationEvaluatorAPPENDImplements the append operation.(package private) static IOperationEvaluatorEXCLUDINGImplements the "excluding" operation.(package private) static IOperationEvaluatorFIRSTImplements the "first" operation.(package private) static IOperationEvaluatorHAS_DUPLICATESImplements the "hasDuplicates" operation.(package private) static IOperationEvaluatorINCLUDINGImplements the "including" operation.(package private) static IOperationEvaluatorINDEX_ACCESSImplements the index access operation.(package private) static IOperationEvaluatorINDEX_OFImplements the "indexOf" operation.(package private) static IOperationEvaluatorINSERT_ATImplements the "hasDuplicates" operation.(package private) static IOperationEvaluatorISSUBSEQUENCEImplements the "isSubsequenceOf" operation.(package private) static IOperationEvaluatorLASTImplements the "last" operation.(package private) static IOperationEvaluatorOVERLAPSImplements the "overlaps" operation.(package private) static IOperationEvaluatorPREPENDImplements the prepend operation.(package private) static IOperationEvaluatorREVERSEImplements the "reverse" operation.(package private) static IOperationEvaluatorSUBSEQUENCEImplements the "subSequence" operation.(package private) static IOperationEvaluatorUNIONImplements the union operation.
-
Constructor Summary
Constructors Modifier Constructor Description privateSequenceOperations()Prevent instance creation.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidregister()Registers the defined operations.
-
-
-
Field Detail
-
INDEX_ACCESS
static final IOperationEvaluator INDEX_ACCESS
Implements the index access operation.
-
FIRST
static final IOperationEvaluator FIRST
Implements the "first" operation.
-
LAST
static final IOperationEvaluator LAST
Implements the "last" operation.
-
HAS_DUPLICATES
static final IOperationEvaluator HAS_DUPLICATES
Implements the "hasDuplicates" operation.
-
INSERT_AT
static final IOperationEvaluator INSERT_AT
Implements the "hasDuplicates" operation.
-
INDEX_OF
static final IOperationEvaluator INDEX_OF
Implements the "indexOf" operation.
-
ISSUBSEQUENCE
static final IOperationEvaluator ISSUBSEQUENCE
Implements the "isSubsequenceOf" operation.
-
OVERLAPS
static final IOperationEvaluator OVERLAPS
Implements the "overlaps" operation.
-
UNION
static final IOperationEvaluator UNION
Implements the union operation.
-
PREPEND
static final IOperationEvaluator PREPEND
Implements the prepend operation.
-
APPEND
static final IOperationEvaluator APPEND
Implements the append operation.
-
EXCLUDING
static final IOperationEvaluator EXCLUDING
Implements the "excluding" operation.
-
INCLUDING
static final IOperationEvaluator INCLUDING
Implements the "including" operation.
-
REVERSE
static final IOperationEvaluator REVERSE
Implements the "reverse" operation.
-
SUBSEQUENCE
static final IOperationEvaluator SUBSEQUENCE
Implements the "subSequence" operation.
-
-