Interface Build.GeneratedFileOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.GeneratedFile,Build.GeneratedFile.Builder
- Enclosing class:
- Build
public static interface Build.GeneratedFileOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetGeneratingRule()The label of the target that generates the file.ByteStringgetGeneratingRuleBytes()The label of the target that generates the file.java.lang.StringgetLocation()The path, line number, and column number of the output file (not a label).ByteStringgetLocationBytes()The path, line number, and column number of the output file (not a label).java.lang.StringgetName()The name of the generated file (a label).ByteStringgetNameBytes()The name of the generated file (a label).booleanhasGeneratingRule()The label of the target that generates the file.booleanhasLocation()The path, line number, and column number of the output file (not a label).booleanhasName()The name of the generated file (a label).-
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
-
hasName
boolean hasName()
The name of the generated file (a label).
required string name = 1;- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the generated file (a label).
required string name = 1;- Returns:
- The name.
-
getNameBytes
ByteString getNameBytes()
The name of the generated file (a label).
required string name = 1;- Returns:
- The bytes for name.
-
hasGeneratingRule
boolean hasGeneratingRule()
The label of the target that generates the file.
required string generating_rule = 2;- Returns:
- Whether the generatingRule field is set.
-
getGeneratingRule
java.lang.String getGeneratingRule()
The label of the target that generates the file.
required string generating_rule = 2;- Returns:
- The generatingRule.
-
getGeneratingRuleBytes
ByteString getGeneratingRuleBytes()
The label of the target that generates the file.
required string generating_rule = 2;- Returns:
- The bytes for generatingRule.
-
hasLocation
boolean hasLocation()
The path, line number, and column number of the output file (not a label).
optional string location = 3;- Returns:
- Whether the location field is set.
-
getLocation
java.lang.String getLocation()
The path, line number, and column number of the output file (not a label).
optional string location = 3;- Returns:
- The location.
-
getLocationBytes
ByteString getLocationBytes()
The path, line number, and column number of the output file (not a label).
optional string location = 3;- Returns:
- The bytes for location.
-
-