Interface StardocOutputProtos.OriginKeyOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StardocOutputProtos.OriginKey,StardocOutputProtos.OriginKey.Builder
- Enclosing class:
- StardocOutputProtos
public static interface StardocOutputProtos.OriginKeyOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetFile()The display form of the label of the module file in which the entity was originally declared (as seen from the starlark_doc_extract or Stardoc target's repo), or "<native>" for Bazel's built-in entities implemented in Java.com.google.protobuf.ByteStringThe display form of the label of the module file in which the entity was originally declared (as seen from the starlark_doc_extract or Stardoc target's repo), or "<native>" for Bazel's built-in entities implemented in Java.getName()The name under which the entity was originally exported.com.google.protobuf.ByteStringThe name under which the entity was originally exported.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getName
String getName()The name under which the entity was originally exported. Unset when the entity was not exported in its module.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()The name under which the entity was originally exported. Unset when the entity was not exported in its module.
string name = 1;- Returns:
- The bytes for name.
-
getFile
String getFile()The display form of the label of the module file in which the entity was originally declared (as seen from the starlark_doc_extract or Stardoc target's repo), or "<native>" for Bazel's built-in entities implemented in Java. Unset when there is no module file (such as for legacy struct providers, when the module is a REPL, or in Bazel's internal tests).
string file = 2;- Returns:
- The file.
-
getFileBytes
com.google.protobuf.ByteString getFileBytes()The display form of the label of the module file in which the entity was originally declared (as seen from the starlark_doc_extract or Stardoc target's repo), or "<native>" for Bazel's built-in entities implemented in Java. Unset when there is no module file (such as for legacy struct providers, when the module is a REPL, or in Bazel's internal tests).
string file = 2;- Returns:
- The bytes for file.
-