Uses of Class
org.qdl_lang.variables.QDLList
-
Packages that use QDLList Package Description org.qdl_lang.evaluate Evaluators evaluate the built-in functions for QDL as well as perform the usual algebraic operations.org.qdl_lang.extensions.convert The conversion module.org.qdl_lang.extensions.dynamodb org.qdl_lang.variables Variables in QDL and classes that support them. -
-
Uses of QDLList in org.qdl_lang.evaluate
Methods in org.qdl_lang.evaluate with parameters of type QDLList Modifier and Type Method Description protected static String
IOEvaluator. toIniList(QDLList list)
-
Uses of QDLList in org.qdl_lang.extensions.convert
Methods in org.qdl_lang.extensions.convert with parameters of type QDLList Modifier and Type Method Description protected Object
QDLConvert. snarfList(QDLList list, boolean glomStringsTogether)
-
Uses of QDLList in org.qdl_lang.extensions.dynamodb
Methods in org.qdl_lang.extensions.dynamodb with parameters of type QDLList Modifier and Type Method Description protected software.amazon.awssdk.services.dynamodb.model.AttributeValue
DynamoDB. convertToAV(QDLList qdlList)
-
Uses of QDLList in org.qdl_lang.variables
Methods in org.qdl_lang.variables that return QDLList Modifier and Type Method Description QDLList
QDLList. dim()
Get the dimension list for this object.QDLList
QDLStem. getQDLList()
QDLList
QDLList. subList(long startIndex, boolean includeStartIndex, long endIndex, boolean includeEndIndex)
QDLList
QDLList. subListNEW(long startIndex, boolean includeStartIndex, long count, boolean includeEndIndex)
QDLList
QDLList. subsetBasicCase(long startIndex, boolean includeStartIndex, long count, boolean includeEndIndex)
QDLList
QDLList. subsetEndOfList(long startIndex, boolean includeStartIndex, long count, boolean includeEndIndex)
QDLList
QDLList. subsetEndOfListFromEnd(long startIndex, boolean includeStartIndex, long count, boolean includeEndIndex)
QDLList
QDLList. unique()
Runs over every entry in the stem list (including danglers).Methods in org.qdl_lang.variables with parameters of type QDLList Modifier and Type Method Description void
QDLList. listCopyFrom(long startIndex, long length, QDLList source, long insertIndex)
void
QDLList. listInsertFrom(long startIndex, long length, QDLList source, long insertIndex)
void
QDLStem. setQDLList(QDLList qdlList)
Constructors in org.qdl_lang.variables with parameters of type QDLList Constructor Description QDLStem(QDLList list)
Initialize a QDL stem with a list
-