public final class LogEntrySourceLocation extends GeneratedMessageV3 implements LogEntrySourceLocationOrBuilder
Additional information about the source code location that produced the log entry.
Protobuf type google.logging.v2.LogEntrySourceLocation
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > LogEntrySourceLocationImplements
LogEntrySourceLocationOrBuilderStatic Fields
FILE_FIELD_NUMBER
public static final int FILE_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
FUNCTION_FIELD_NUMBER
public static final int FUNCTION_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
LINE_FIELD_NUMBER
public static final int LINE_FIELD_NUMBER
Field Value | |
---|---|
Type | Description |
int |
Static Methods
getDefaultInstance()
public static LogEntrySourceLocation getDefaultInstance()
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns | |
---|---|
Type | Description |
Descriptor |
newBuilder()
public static LogEntrySourceLocation.Builder newBuilder()
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation.Builder |
newBuilder(LogEntrySourceLocation prototype)
public static LogEntrySourceLocation.Builder newBuilder(LogEntrySourceLocation prototype)
Parameter | |
---|---|
Name | Description |
prototype |
LogEntrySourceLocation |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation.Builder |
parseDelimitedFrom(InputStream input)
public static LogEntrySourceLocation parseDelimitedFrom(InputStream input)
Parameter | |
---|---|
Name | Description |
input |
InputStream |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input |
InputStream |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(byte[] data)
public static LogEntrySourceLocation parseFrom(byte[] data)
Parameter | |
---|---|
Name | Description |
data |
byte[] |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data |
byte[] |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static LogEntrySourceLocation parseFrom(ByteString data)
Parameter | |
---|---|
Name | Description |
data |
ByteString |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data |
ByteString |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static LogEntrySourceLocation parseFrom(CodedInputStream input)
Parameter | |
---|---|
Name | Description |
input |
CodedInputStream |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input |
CodedInputStream |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(InputStream input)
public static LogEntrySourceLocation parseFrom(InputStream input)
Parameter | |
---|---|
Name | Description |
input |
InputStream |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input |
InputStream |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static LogEntrySourceLocation parseFrom(ByteBuffer data)
Parameter | |
---|---|
Name | Description |
data |
ByteBuffer |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static LogEntrySourceLocation parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
data |
ByteBuffer |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
Exceptions | |
---|---|
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<LogEntrySourceLocation> parser()
Returns | |
---|---|
Type | Description |
Parser<LogEntrySourceLocation> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter | |
---|---|
Name | Description |
obj |
Object |
Returns | |
---|---|
Type | Description |
boolean |
getDefaultInstanceForType()
public LogEntrySourceLocation getDefaultInstanceForType()
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation |
getFile()
public String getFile()
Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name.
string file = 1 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
String |
The file. |
getFileBytes()
public ByteString getFileBytes()
Optional. Source file name. Depending on the runtime environment, this might be a simple name or a fully-qualified name.
string file = 1 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for file. |
getFunction()
public String getFunction()
Optional. Human-readable name of the function or method being invoked, with
optional context such as the class or package name. This information may be
used in contexts such as the logs viewer, where a file and line number are
less meaningful. The format can vary by language. For example:
qual.if.ied.Class.method
(Java), dir/package.func
(Go), function
(Python).
string function = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
String |
The function. |
getFunctionBytes()
public ByteString getFunctionBytes()
Optional. Human-readable name of the function or method being invoked, with
optional context such as the class or package name. This information may be
used in contexts such as the logs viewer, where a file and line number are
less meaningful. The format can vary by language. For example:
qual.if.ied.Class.method
(Java), dir/package.func
(Go), function
(Python).
string function = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for function. |
getLine()
public long getLine()
Optional. Line within the source file. 1-based; 0 indicates no line number available.
int64 line = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
long |
The line. |
getParserForType()
public Parser<LogEntrySourceLocation> getParserForType()
Returns | |
---|---|
Type | Description |
Parser<LogEntrySourceLocation> |
getSerializedSize()
public int getSerializedSize()
Returns | |
---|---|
Type | Description |
int |
hashCode()
public int hashCode()
Returns | |
---|---|
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns | |
---|---|
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Returns | |
---|---|
Type | Description |
boolean |
newBuilderForType()
public LogEntrySourceLocation.Builder newBuilderForType()
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected LogEntrySourceLocation.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter | |
---|---|
Name | Description |
parent |
BuilderParent |
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter | |
---|---|
Name | Description |
unused |
UnusedPrivateParameter |
Returns | |
---|---|
Type | Description |
Object |
toBuilder()
public LogEntrySourceLocation.Builder toBuilder()
Returns | |
---|---|
Type | Description |
LogEntrySourceLocation.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter | |
---|---|
Name | Description |
output |
CodedOutputStream |
Exceptions | |
---|---|
Type | Description |
IOException |