Package org.platanios.tensorflow.proto
Interface SummaryMetadata.PluginDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SummaryMetadata.PluginData
,SummaryMetadata.PluginData.Builder
- Enclosing class:
- SummaryMetadata
public static interface SummaryMetadata.PluginDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getContent()
The content to store for the plugin.java.lang.String
getPluginName()
The name of the plugin this data pertains to.com.google.protobuf.ByteString
getPluginNameBytes()
The name of the plugin this data pertains to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPluginName
java.lang.String getPluginName()
The name of the plugin this data pertains to.
string plugin_name = 1;
- Returns:
- The pluginName.
-
getPluginNameBytes
com.google.protobuf.ByteString getPluginNameBytes()
The name of the plugin this data pertains to.
string plugin_name = 1;
- Returns:
- The bytes for pluginName.
-
getContent
com.google.protobuf.ByteString getContent()
The content to store for the plugin. The best practice is for this to be a binary serialized protocol buffer.
bytes content = 2;
- Returns:
- The content.
-
-