Interface GoConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GoConfig,GoConfig.Builder
public interface GoConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetEnableDebugging()optional bool enable_debugging = 3;booleangetEnableWatchingGoPath()optional bool enable_watching_go_path = 2;StringgetWorkDir()optional string work_dir = 1;com.google.protobuf.ByteStringgetWorkDirBytes()optional string work_dir = 1;booleanhasEnableDebugging()optional bool enable_debugging = 3;booleanhasEnableWatchingGoPath()optional bool enable_watching_go_path = 2;booleanhasWorkDir()optional string work_dir = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasWorkDir
boolean hasWorkDir()
optional string work_dir = 1;- Returns:
- Whether the workDir field is set.
-
getWorkDir
String getWorkDir()
optional string work_dir = 1;- Returns:
- The workDir.
-
getWorkDirBytes
com.google.protobuf.ByteString getWorkDirBytes()
optional string work_dir = 1;- Returns:
- The bytes for workDir.
-
hasEnableWatchingGoPath
boolean hasEnableWatchingGoPath()
optional bool enable_watching_go_path = 2;- Returns:
- Whether the enableWatchingGoPath field is set.
-
getEnableWatchingGoPath
boolean getEnableWatchingGoPath()
optional bool enable_watching_go_path = 2;- Returns:
- The enableWatchingGoPath.
-
hasEnableDebugging
boolean hasEnableDebugging()
optional bool enable_debugging = 3;- Returns:
- Whether the enableDebugging field is set.
-
getEnableDebugging
boolean getEnableDebugging()
optional bool enable_debugging = 3;- Returns:
- The enableDebugging.
-
-