Package dev.cel.common.ast
Class CelExpr.CelIdent
- java.lang.Object
-
- dev.cel.common.ast.CelExpr.CelIdent
-
- Enclosing class:
- CelExpr
@Immutable public abstract static class CelExpr.CelIdent extends java.lang.ObjectAn identifier expression. e.g. `request`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCelExpr.CelIdent.BuilderBuilder for CelIdent.
-
Constructor Summary
Constructors Constructor Description CelIdent()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.Stringname()Required.static CelExpr.CelIdent.BuildernewBuilder()abstract CelExpr.CelIdent.BuildertoBuilder()
-
-
-
Method Detail
-
name
public abstract java.lang.String name()
Required. Holds a single, unqualified identifier, possibly preceded by a '.'.Qualified names are represented by the [Expr.Select][] expression.
-
toBuilder
public abstract CelExpr.CelIdent.Builder toBuilder()
-
newBuilder
public static CelExpr.CelIdent.Builder newBuilder()
-
-