Uses of Interface
org.qdl_lang.util.aggregate.ProcessScalar
-
Packages that use ProcessScalar 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.crypto The cryptographic module.org.qdl_lang.util.aggregate Utilities for dealing with aggregates, i.e., sets and stems in QDL. -
-
Uses of ProcessScalar in org.qdl_lang.evaluate
Classes in org.qdl_lang.evaluate that implement ProcessScalar Modifier and Type Class Description static class
SystemEvaluator.ReduceAll
-
Uses of ProcessScalar in org.qdl_lang.extensions.crypto
Classes in org.qdl_lang.extensions.crypto that implement ProcessScalar Modifier and Type Class Description protected class
Crypto.CodeChallenge.ProcessCodeChallenge
class
Crypto.DoJWTVerify
protected class
Crypto.HexToB64.ProcessHexToB64
protected class
Crypto.IdentityEncryptDecrypt
class
Crypto.IdentityJWT
protected class
Crypto.IdentitySymmetricDeorEncrypt
class
Crypto.ProcessB64ToHex
class
Crypto.ProcessB64ToInt
protected class
Crypto.ProcessHexToInt
protected class
Crypto.ProcessIntToB64
protected class
Crypto.ProcessIntToHex
protected class
Crypto.ReadOID.IdentityOIDS
-
Uses of ProcessScalar in org.qdl_lang.util.aggregate
Classes in org.qdl_lang.util.aggregate that implement ProcessScalar Modifier and Type Class Description class
IdentityScalarImpl
Basic (identity) implementation ofProcessScalar
, simply returns each argument unchanged.class
NoOpScalarImpl
Basic implementation ofProcessScalar
that simply throws an exception for each argument.Methods in org.qdl_lang.util.aggregate with parameters of type ProcessScalar Modifier and Type Method Description static Object
QDLAggregateUtil. process(QDLValue qdlValue, ProcessScalar processScalar)
Top-level call for this set of utilities.static QDLSet
QDLAggregateUtil. processSet(QDLSet<QDLValue> inSet, ProcessScalar processScalar)
Process the elements in a set, including nested sets.static QDLStem
QDLAggregateUtil. processStem(QDLStem inStem, List<Object> index, ProcessScalar processScalar)
-