Uses of Record Class
com.google.mu.cel.CelExpr.Ident
Packages that use CelExpr.Ident
-
Uses of CelExpr.Ident in com.google.mu.cel
Methods in com.google.mu.cel that return CelExpr.IdentModifier and TypeMethodDescriptionCelExpr.OptionalSelect.field()Returns the value of thefieldrecord component.CelExpr.Select.field()Returns the value of thefieldrecord component.CelExpr.FunctionCall.function()Returns the value of thefunctionrecord component.CelExpr.Macro.All.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.Macro.Exists.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.Macro.ExistsOne.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.Macro.Filter.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.Macro.FilterMap.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.Macro.Map.iterationVar()Returns the value of theiterationVarrecord component.CelExpr.MemberCall.member()Returns the value of thememberrecord component.CelExpr.Ident.withSourceIndex(int index) Methods in com.google.mu.cel that return types with arguments of type CelExpr.IdentModifier and TypeMethodDescriptionCelExpr.Struct.fields()Returns the value of thefieldsrecord component.Methods in com.google.mu.cel with parameters of type CelExpr.IdentModifier and TypeMethodDescriptiondefault CelExpr.MemberCallCelExpr.call(CelExpr.Ident member, List<CelExpr> args) target.call(member, args)is equivalent toCelExpr.of("target.member(args)").default CelExpr.OptionalSelectCelExpr.optionalSelect(CelExpr.Ident field) expr.optionalSelect(field)is equivalent toCelExpr.of("expr.?field").default CelExpr.SelectCelExpr.select(CelExpr.Ident field) expr.select(field)is equivalent toCelExpr.of("expr.field").Constructors in com.google.mu.cel with parameters of type CelExpr.IdentModifierConstructorDescriptionAll(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition) All(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition, int sourceIndex) Creates an instance of aAllrecord class.Exists(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition) Exists(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition, int sourceIndex) Creates an instance of aExistsrecord class.ExistsOne(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition) ExistsOne(CelExpr target, CelExpr.Ident iterationVar, CelExpr condition, int sourceIndex) Creates an instance of aExistsOnerecord class.Filter(CelExpr target, CelExpr.Ident iterationVar, CelExpr expr) Filter(CelExpr target, CelExpr.Ident iterationVar, CelExpr expr, int sourceIndex) Creates an instance of aFilterrecord class.FilterMap(CelExpr target, CelExpr.Ident iterationVar, CelExpr filter, CelExpr transform) FilterMap(CelExpr target, CelExpr.Ident iterationVar, CelExpr filter, CelExpr transform, int sourceIndex) Creates an instance of aFilterMaprecord class.FunctionCall(CelExpr.Ident function, List<CelExpr> args) FunctionCall(CelExpr.Ident function, List<CelExpr> args, int sourceIndex) Creates an instance of aFunctionCallrecord class.Map(CelExpr target, CelExpr.Ident iterationVar, CelExpr expr) Map(CelExpr target, CelExpr.Ident iterationVar, CelExpr expr, int sourceIndex) Creates an instance of aMaprecord class.MemberCall(CelExpr target, CelExpr.Ident member, List<CelExpr> args) MemberCall(CelExpr target, CelExpr.Ident member, List<CelExpr> args, int sourceIndex) Creates an instance of aMemberCallrecord class.OptionalSelect(CelExpr operand, CelExpr.Ident field) OptionalSelect(CelExpr operand, CelExpr.Ident field, int sourceIndex) Creates an instance of aOptionalSelectrecord class.Select(CelExpr operand, CelExpr.Ident field) Select(CelExpr operand, CelExpr.Ident field, int sourceIndex) Creates an instance of aSelectrecord class.Constructor parameters in com.google.mu.cel with type arguments of type CelExpr.IdentModifierConstructorDescriptionStruct(String typeName, List<CelExpr.KeyedBy<CelExpr.Ident>> fields) Struct(String typeName, List<CelExpr.KeyedBy<CelExpr.Ident>> fields, int sourceIndex) Creates an instance of aStructrecord class.