Package org.yamcs.api
Interface FilterSyntaxExceptionOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FilterSyntaxException
,FilterSyntaxException.Builder
public interface FilterSyntaxExceptionOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionint
Begin column of the token where the exception occursint
Begin line of the token where the exception occursint
End column of the token where the exception occursint
End line of the token where the exception occursMethods 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 Details
-
getBeginLine
int getBeginLine()Begin line of the token where the exception occurs
int32 beginLine = 1;
- Returns:
- The beginLine.
-
getBeginColumn
int getBeginColumn()Begin column of the token where the exception occurs
int32 beginColumn = 2;
- Returns:
- The beginColumn.
-
getEndLine
int getEndLine()End line of the token where the exception occurs
int32 endLine = 3;
- Returns:
- The endLine.
-
getEndColumn
int getEndColumn()End column of the token where the exception occurs
int32 endColumn = 4;
- Returns:
- The endColumn.
-