Package dev.cel.expr
Interface ConstantOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Constant,Constant.Builder
public interface ConstantOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleangetBoolValue()boolean value.ByteStringgetBytesValue()bytes value.Constant.ConstantKindCasegetConstantKindCase()doublegetDoubleValue()double value.DurationgetDurationValue()Deprecated.cel.expr.Constant.duration_value is deprecated.DurationOrBuildergetDurationValueOrBuilder()Deprecated.longgetInt64Value()int64 value.NullValuegetNullValue()null value.intgetNullValueValue()null value.java.lang.StringgetStringValue()string value.ByteStringgetStringValueBytes()string value.TimestampgetTimestampValue()Deprecated.cel.expr.Constant.timestamp_value is deprecated.TimestampOrBuildergetTimestampValueOrBuilder()Deprecated.longgetUint64Value()uint64 value.booleanhasBoolValue()boolean value.booleanhasBytesValue()bytes value.booleanhasDoubleValue()double value.booleanhasDurationValue()Deprecated.cel.expr.Constant.duration_value is deprecated.booleanhasInt64Value()int64 value.booleanhasNullValue()null value.booleanhasStringValue()string value.booleanhasTimestampValue()Deprecated.cel.expr.Constant.timestamp_value is deprecated.booleanhasUint64Value()uint64 value.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasNullValue
boolean hasNullValue()
null value.
.google.protobuf.NullValue null_value = 1;- Returns:
- Whether the nullValue field is set.
-
getNullValueValue
int getNullValueValue()
null value.
.google.protobuf.NullValue null_value = 1;- Returns:
- The enum numeric value on the wire for nullValue.
-
getNullValue
NullValue getNullValue()
null value.
.google.protobuf.NullValue null_value = 1;- Returns:
- The nullValue.
-
hasBoolValue
boolean hasBoolValue()
boolean value.
bool bool_value = 2;- Returns:
- Whether the boolValue field is set.
-
getBoolValue
boolean getBoolValue()
boolean value.
bool bool_value = 2;- Returns:
- The boolValue.
-
hasInt64Value
boolean hasInt64Value()
int64 value.
int64 int64_value = 3;- Returns:
- Whether the int64Value field is set.
-
getInt64Value
long getInt64Value()
int64 value.
int64 int64_value = 3;- Returns:
- The int64Value.
-
hasUint64Value
boolean hasUint64Value()
uint64 value.
uint64 uint64_value = 4;- Returns:
- Whether the uint64Value field is set.
-
getUint64Value
long getUint64Value()
uint64 value.
uint64 uint64_value = 4;- Returns:
- The uint64Value.
-
hasDoubleValue
boolean hasDoubleValue()
double value.
double double_value = 5;- Returns:
- Whether the doubleValue field is set.
-
getDoubleValue
double getDoubleValue()
double value.
double double_value = 5;- Returns:
- The doubleValue.
-
hasStringValue
boolean hasStringValue()
string value.
string string_value = 6;- Returns:
- Whether the stringValue field is set.
-
getStringValue
java.lang.String getStringValue()
string value.
string string_value = 6;- Returns:
- The stringValue.
-
getStringValueBytes
ByteString getStringValueBytes()
string value.
string string_value = 6;- Returns:
- The bytes for stringValue.
-
hasBytesValue
boolean hasBytesValue()
bytes value.
bytes bytes_value = 7;- Returns:
- Whether the bytesValue field is set.
-
getBytesValue
ByteString getBytesValue()
bytes value.
bytes bytes_value = 7;- Returns:
- The bytesValue.
-
hasDurationValue
@Deprecated boolean hasDurationValue()
Deprecated.cel.expr.Constant.duration_value is deprecated. See cel/expr/syntax.proto;l=301protobuf.Duration value. Deprecated: duration is no longer considered a builtin cel type.
.google.protobuf.Duration duration_value = 8 [deprecated = true];- Returns:
- Whether the durationValue field is set.
-
getDurationValue
@Deprecated Duration getDurationValue()
Deprecated.cel.expr.Constant.duration_value is deprecated. See cel/expr/syntax.proto;l=301protobuf.Duration value. Deprecated: duration is no longer considered a builtin cel type.
.google.protobuf.Duration duration_value = 8 [deprecated = true];- Returns:
- The durationValue.
-
getDurationValueOrBuilder
@Deprecated DurationOrBuilder getDurationValueOrBuilder()
Deprecated.protobuf.Duration value. Deprecated: duration is no longer considered a builtin cel type.
.google.protobuf.Duration duration_value = 8 [deprecated = true];
-
hasTimestampValue
@Deprecated boolean hasTimestampValue()
Deprecated.cel.expr.Constant.timestamp_value is deprecated. See cel/expr/syntax.proto;l=306protobuf.Timestamp value. Deprecated: timestamp is no longer considered a builtin cel type.
.google.protobuf.Timestamp timestamp_value = 9 [deprecated = true];- Returns:
- Whether the timestampValue field is set.
-
getTimestampValue
@Deprecated Timestamp getTimestampValue()
Deprecated.cel.expr.Constant.timestamp_value is deprecated. See cel/expr/syntax.proto;l=306protobuf.Timestamp value. Deprecated: timestamp is no longer considered a builtin cel type.
.google.protobuf.Timestamp timestamp_value = 9 [deprecated = true];- Returns:
- The timestampValue.
-
getTimestampValueOrBuilder
@Deprecated TimestampOrBuilder getTimestampValueOrBuilder()
Deprecated.protobuf.Timestamp value. Deprecated: timestamp is no longer considered a builtin cel type.
.google.protobuf.Timestamp timestamp_value = 9 [deprecated = true];
-
getConstantKindCase
Constant.ConstantKindCase getConstantKindCase()
-
-