Package dev.cel.expr
Interface SourceInfo.Extension.VersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SourceInfo.Extension.Version
,SourceInfo.Extension.Version.Builder
- Enclosing class:
- SourceInfo.Extension
public static interface SourceInfo.Extension.VersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getMajor()
Major version changes indicate different required support level from the required components.long
getMinor()
Minor version changes must not change the observed behavior from existing implementations, but may be provided informationally.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMajor
long getMajor()
Major version changes indicate different required support level from the required components.
int64 major = 1;
- Returns:
- The major.
-
getMinor
long getMinor()
Minor version changes must not change the observed behavior from existing implementations, but may be provided informationally.
int64 minor = 2;
- Returns:
- The minor.
-
-