Package dev.cel.common.ast
Class CelReference
- java.lang.Object
-
- dev.cel.common.ast.CelReference
-
@Internal @Immutable public abstract class CelReference extends java.lang.Object
Describes a resolved reference to a declaration.This is the CEL-Java native type equivalent of Reference message type from checked.proto.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CelReference.Builder
Builder for configuring theCelReference
-
Constructor Summary
Constructors Constructor Description CelReference()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.String
name()
static CelReference.Builder
newBuilder()
abstract com.google.common.collect.ImmutableList<java.lang.String>
overloadIds()
abstract java.util.Optional<CelConstant>
value()
-
-
-
Method Detail
-
name
public abstract java.lang.String name()
-
overloadIds
public abstract com.google.common.collect.ImmutableList<java.lang.String> overloadIds()
-
value
public abstract java.util.Optional<CelConstant> value()
-
newBuilder
public static CelReference.Builder newBuilder()
-
-