Interface Xplane.XEventMetadataOrBuilder

All Superinterfaces:
MessageLiteOrBuilder, MessageOrBuilder
All Known Implementing Classes:
Xplane.XEventMetadata, Xplane.XEventMetadata.Builder
Enclosing class:
Xplane

public static interface Xplane.XEventMetadataOrBuilder extends MessageOrBuilder
  • Method Details

    • getId

      long getId()
      XPlane.event_metadata map key.
      
      int64 id = 1;
      Returns:
      The id.
    • getName

      String getName()
      Name of the event.
      
      string name = 2;
      Returns:
      The name.
    • getNameBytes

      ByteString getNameBytes()
      Name of the event.
      
      string name = 2;
      Returns:
      The bytes for name.
    • getDisplayName

      String getDisplayName()
      Name of the event shown in trace viewer.
      
      string display_name = 4;
      Returns:
      The displayName.
    • getDisplayNameBytes

      ByteString getDisplayNameBytes()
      Name of the event shown in trace viewer.
      
      string display_name = 4;
      Returns:
      The bytes for displayName.
    • getMetadata

      ByteString getMetadata()
      Additional metadata in serialized format.
      
      bytes metadata = 3;
      Returns:
      The metadata.
    • getStatsList

      List<Xplane.XStat> getStatsList()
      XStats that are constant for all XEvents with the same metadata_id.
      Each of these XStats should have a different metadata_id.
      
      repeated .tensorflow.profiler.XStat stats = 5;
    • getStats

      Xplane.XStat getStats(int index)
      XStats that are constant for all XEvents with the same metadata_id.
      Each of these XStats should have a different metadata_id.
      
      repeated .tensorflow.profiler.XStat stats = 5;
    • getStatsCount

      int getStatsCount()
      XStats that are constant for all XEvents with the same metadata_id.
      Each of these XStats should have a different metadata_id.
      
      repeated .tensorflow.profiler.XStat stats = 5;
    • getStatsOrBuilderList

      List<? extends Xplane.XStatOrBuilder> getStatsOrBuilderList()
      XStats that are constant for all XEvents with the same metadata_id.
      Each of these XStats should have a different metadata_id.
      
      repeated .tensorflow.profiler.XStat stats = 5;
    • getStatsOrBuilder

      Xplane.XStatOrBuilder getStatsOrBuilder(int index)
      XStats that are constant for all XEvents with the same metadata_id.
      Each of these XStats should have a different metadata_id.
      
      repeated .tensorflow.profiler.XStat stats = 5;
    • getChildIdList

      List<Long> getChildIdList()
      XPlane.event_metadata map key for children events.
      
      repeated int64 child_id = 6;
      Returns:
      A list containing the childId.
    • getChildIdCount

      int getChildIdCount()
      XPlane.event_metadata map key for children events.
      
      repeated int64 child_id = 6;
      Returns:
      The count of childId.
    • getChildId

      long getChildId(int index)
      XPlane.event_metadata map key for children events.
      
      repeated int64 child_id = 6;
      Parameters:
      index - The index of the element to return.
      Returns:
      The childId at the given index.