Package dev.cel.common.ast
Class CelExpr.CelCreateMap
- java.lang.Object
-
- dev.cel.common.ast.CelExpr.CelCreateMap
-
- Enclosing class:
- CelExpr
@Immutable public abstract static class CelExpr.CelCreateMap extends java.lang.Object
A map creation expression.Maps are constructed as `{'key_name': 'value'}`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CelExpr.CelCreateMap.Builder
Builder for CelCreateMap.static class
CelExpr.CelCreateMap.Entry
Represents an entry of the map
-
Constructor Summary
Constructors Constructor Description CelCreateMap()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract com.google.common.collect.ImmutableList<CelExpr.CelCreateMap.Entry>
entries()
The entries in the creation expression.static CelExpr.CelCreateMap.Builder
newBuilder()
CelExpr.CelCreateMap.Builder
toBuilder()
-
-
-
Method Detail
-
entries
public abstract com.google.common.collect.ImmutableList<CelExpr.CelCreateMap.Entry> entries()
The entries in the creation expression.
-
toBuilder
public CelExpr.CelCreateMap.Builder toBuilder()
-
newBuilder
public static CelExpr.CelCreateMap.Builder newBuilder()
-
-