Uses of Class
org.qdl_lang.variables.values.QDLKey
-
Packages that use QDLKey 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.expressions Expressions are objects that take zero or more arguments and return a result.org.qdl_lang.variables Variables in QDL and classes that support them.org.qdl_lang.variables.values -
-
Uses of QDLKey in org.qdl_lang.evaluate
Methods in org.qdl_lang.evaluate that return QDLKey Modifier and Type Method Description QDLKey
AbstractEvaluator.CommonKeyIterator. next()
-
Uses of QDLKey in org.qdl_lang.expressions
Methods in org.qdl_lang.expressions that return types with arguments of type QDLKey Modifier and Type Method Description Collection<? extends QDLKey>
IndexArg. createKeySet(QDLStem in, State state)
-
Uses of QDLKey in org.qdl_lang.variables
Methods in org.qdl_lang.variables that return QDLKey Modifier and Type Method Description QDLKey
StemKeys.MyStemKeyIterator. next()
Methods in org.qdl_lang.variables that return types with arguments of type QDLKey Modifier and Type Method Description Set<Map.Entry<QDLKey,QDLValue>>
QDLStem. entrySet()
Iterator<QDLKey>
StemKeys. iterator()
Methods in org.qdl_lang.variables with parameters of type QDLKey Modifier and Type Method Description void
StemUtility.DyadAxisAction. action(QDLStem out, QDLKey key, QDLStem leftStem, QDLStem rightStem)
Action to be appliedboolean
StemKeys. add(QDLKey qdlKey)
QDLValue
QDLStem. get(QDLKey key)
Convenience setter to put an object.QDLValue
QDLStem. put(QDLKey qdlKey, Object object)
Convenience method that converts second argument to aQDLValue
as needed.QDLValue
QDLStem. put(QDLKey qdlKey, QDLValue qdlValue)
Method parameters in org.qdl_lang.variables with type arguments of type QDLKey Modifier and Type Method Description void
QDLStem. putAll(Map<? extends QDLKey,? extends QDLValue> map)
This does not add the list elements because that causes issues with the contract for maps. -
Uses of QDLKey in org.qdl_lang.variables.values
Subclasses of QDLKey in org.qdl_lang.variables.values Modifier and Type Class Description class
LongValue
class
StemValue
class
StringValue
Methods in org.qdl_lang.variables.values that return QDLKey Modifier and Type Method Description static QDLKey
QDLKey. from(Object value)
This will convert the POJO to a key.Methods in org.qdl_lang.variables.values that return types with arguments of type QDLKey Modifier and Type Method Description static Collection<QDLKey>
QDLKey. from(Collection<Object> values)
Converts a collection -- a list or set -- of objects to keys.
-