Interface CustomTag.EnvironmentOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomTag.Environment
,CustomTag.Environment.Builder
- Enclosing class:
CustomTag
public static interface CustomTag.EnvironmentOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionWhen the environment variable is not found, the tag value will be populated with this default value if specified, otherwise no tag will be populated.com.google.protobuf.ByteString
When the environment variable is not found, the tag value will be populated with this default value if specified, otherwise no tag will be populated.getName()
Environment variable name to obtain the value to populate the tag value.com.google.protobuf.ByteString
Environment variable name to obtain the value to populate the tag value.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 Details
-
getName
String getName()Environment variable name to obtain the value to populate the tag value.
string name = 1 [(.validate.rules) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()Environment variable name to obtain the value to populate the tag value.
string name = 1 [(.validate.rules) = { ... }
- Returns:
- The bytes for name.
-
getDefaultValue
String getDefaultValue()When the environment variable is not found, the tag value will be populated with this default value if specified, otherwise no tag will be populated.
string default_value = 2;
- Returns:
- The defaultValue.
-
getDefaultValueBytes
com.google.protobuf.ByteString getDefaultValueBytes()When the environment variable is not found, the tag value will be populated with this default value if specified, otherwise no tag will be populated.
string default_value = 2;
- Returns:
- The bytes for defaultValue.
-