Class SystemInfo

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
org.yamcs.protobuf.SystemInfo
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable, SystemInfoOrBuilder

public final class SystemInfo extends com.google.protobuf.GeneratedMessageV3 implements SystemInfoOrBuilder
Protobuf type yamcs.protobuf.server.SystemInfo
See Also:
  • Field Details

    • YAMCSVERSION_FIELD_NUMBER

      public static final int YAMCSVERSION_FIELD_NUMBER
      See Also:
    • REVISION_FIELD_NUMBER

      public static final int REVISION_FIELD_NUMBER
      See Also:
    • SERVERID_FIELD_NUMBER

      public static final int SERVERID_FIELD_NUMBER
      See Also:
    • UPTIME_FIELD_NUMBER

      public static final int UPTIME_FIELD_NUMBER
      See Also:
    • JVM_FIELD_NUMBER

      public static final int JVM_FIELD_NUMBER
      See Also:
    • WORKINGDIRECTORY_FIELD_NUMBER

      public static final int WORKINGDIRECTORY_FIELD_NUMBER
      See Also:
    • CONFIGDIRECTORY_FIELD_NUMBER

      public static final int CONFIGDIRECTORY_FIELD_NUMBER
      See Also:
    • DATADIRECTORY_FIELD_NUMBER

      public static final int DATADIRECTORY_FIELD_NUMBER
      See Also:
    • CACHEDIRECTORY_FIELD_NUMBER

      public static final int CACHEDIRECTORY_FIELD_NUMBER
      See Also:
    • OS_FIELD_NUMBER

      public static final int OS_FIELD_NUMBER
      See Also:
    • ARCH_FIELD_NUMBER

      public static final int ARCH_FIELD_NUMBER
      See Also:
    • AVAILABLEPROCESSORS_FIELD_NUMBER

      public static final int AVAILABLEPROCESSORS_FIELD_NUMBER
      See Also:
    • LOADAVERAGE_FIELD_NUMBER

      public static final int LOADAVERAGE_FIELD_NUMBER
      See Also:
    • HEAPMEMORY_FIELD_NUMBER

      public static final int HEAPMEMORY_FIELD_NUMBER
      See Also:
    • USEDHEAPMEMORY_FIELD_NUMBER

      public static final int USEDHEAPMEMORY_FIELD_NUMBER
      See Also:
    • MAXHEAPMEMORY_FIELD_NUMBER

      public static final int MAXHEAPMEMORY_FIELD_NUMBER
      See Also:
    • NONHEAPMEMORY_FIELD_NUMBER

      public static final int NONHEAPMEMORY_FIELD_NUMBER
      See Also:
    • USEDNONHEAPMEMORY_FIELD_NUMBER

      public static final int USEDNONHEAPMEMORY_FIELD_NUMBER
      See Also:
    • MAXNONHEAPMEMORY_FIELD_NUMBER

      public static final int MAXNONHEAPMEMORY_FIELD_NUMBER
      See Also:
    • JVMTHREADCOUNT_FIELD_NUMBER

      public static final int JVMTHREADCOUNT_FIELD_NUMBER
      See Also:
    • ROOTDIRECTORIES_FIELD_NUMBER

      public static final int ROOTDIRECTORIES_FIELD_NUMBER
      See Also:
    • PROCESS_FIELD_NUMBER

      public static final int PROCESS_FIELD_NUMBER
      See Also:
    • PARSER

      @Deprecated public static final com.google.protobuf.Parser<SystemInfo> PARSER
      Deprecated.
  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getUnknownFields

      public final com.google.protobuf.UnknownFieldSet getUnknownFields()
      Specified by:
      getUnknownFields in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getUnknownFields in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • hasYamcsVersion

      public boolean hasYamcsVersion()
       Yamcs version number.
       
      optional string yamcsVersion = 1;
      Specified by:
      hasYamcsVersion in interface SystemInfoOrBuilder
      Returns:
      Whether the yamcsVersion field is set.
    • getYamcsVersion

      public String getYamcsVersion()
       Yamcs version number.
       
      optional string yamcsVersion = 1;
      Specified by:
      getYamcsVersion in interface SystemInfoOrBuilder
      Returns:
      The yamcsVersion.
    • getYamcsVersionBytes

      public com.google.protobuf.ByteString getYamcsVersionBytes()
       Yamcs version number.
       
      optional string yamcsVersion = 1;
      Specified by:
      getYamcsVersionBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for yamcsVersion.
    • hasRevision

      public boolean hasRevision()
       Git revision number at build time.
       
      optional string revision = 2;
      Specified by:
      hasRevision in interface SystemInfoOrBuilder
      Returns:
      Whether the revision field is set.
    • getRevision

      public String getRevision()
       Git revision number at build time.
       
      optional string revision = 2;
      Specified by:
      getRevision in interface SystemInfoOrBuilder
      Returns:
      The revision.
    • getRevisionBytes

      public com.google.protobuf.ByteString getRevisionBytes()
       Git revision number at build time.
       
      optional string revision = 2;
      Specified by:
      getRevisionBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for revision.
    • hasServerId

      public boolean hasServerId()
       Server identifier, as used in system parameters and distributed setups.
       
      optional string serverId = 3;
      Specified by:
      hasServerId in interface SystemInfoOrBuilder
      Returns:
      Whether the serverId field is set.
    • getServerId

      public String getServerId()
       Server identifier, as used in system parameters and distributed setups.
       
      optional string serverId = 3;
      Specified by:
      getServerId in interface SystemInfoOrBuilder
      Returns:
      The serverId.
    • getServerIdBytes

      public com.google.protobuf.ByteString getServerIdBytes()
       Server identifier, as used in system parameters and distributed setups.
       
      optional string serverId = 3;
      Specified by:
      getServerIdBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for serverId.
    • hasUptime

      public boolean hasUptime()
       Uptime of Yamcs in milliseconds 
       
      optional int64 uptime = 5;
      Specified by:
      hasUptime in interface SystemInfoOrBuilder
      Returns:
      Whether the uptime field is set.
    • getUptime

      public long getUptime()
       Uptime of Yamcs in milliseconds 
       
      optional int64 uptime = 5;
      Specified by:
      getUptime in interface SystemInfoOrBuilder
      Returns:
      The uptime.
    • hasJvm

      public boolean hasJvm()
       Java virtual machine implementation name, version and vendor
       
      optional string jvm = 6;
      Specified by:
      hasJvm in interface SystemInfoOrBuilder
      Returns:
      Whether the jvm field is set.
    • getJvm

      public String getJvm()
       Java virtual machine implementation name, version and vendor
       
      optional string jvm = 6;
      Specified by:
      getJvm in interface SystemInfoOrBuilder
      Returns:
      The jvm.
    • getJvmBytes

      public com.google.protobuf.ByteString getJvmBytes()
       Java virtual machine implementation name, version and vendor
       
      optional string jvm = 6;
      Specified by:
      getJvmBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for jvm.
    • hasWorkingDirectory

      public boolean hasWorkingDirectory()
       Working directory of Yamcs (base path for relative references)
       
      optional string workingDirectory = 7;
      Specified by:
      hasWorkingDirectory in interface SystemInfoOrBuilder
      Returns:
      Whether the workingDirectory field is set.
    • getWorkingDirectory

      public String getWorkingDirectory()
       Working directory of Yamcs (base path for relative references)
       
      optional string workingDirectory = 7;
      Specified by:
      getWorkingDirectory in interface SystemInfoOrBuilder
      Returns:
      The workingDirectory.
    • getWorkingDirectoryBytes

      public com.google.protobuf.ByteString getWorkingDirectoryBytes()
       Working directory of Yamcs (base path for relative references)
       
      optional string workingDirectory = 7;
      Specified by:
      getWorkingDirectoryBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for workingDirectory.
    • hasConfigDirectory

      public boolean hasConfigDirectory()
       Directory where configuration files are located.
       
      optional string configDirectory = 8;
      Specified by:
      hasConfigDirectory in interface SystemInfoOrBuilder
      Returns:
      Whether the configDirectory field is set.
    • getConfigDirectory

      public String getConfigDirectory()
       Directory where configuration files are located.
       
      optional string configDirectory = 8;
      Specified by:
      getConfigDirectory in interface SystemInfoOrBuilder
      Returns:
      The configDirectory.
    • getConfigDirectoryBytes

      public com.google.protobuf.ByteString getConfigDirectoryBytes()
       Directory where configuration files are located.
       
      optional string configDirectory = 8;
      Specified by:
      getConfigDirectoryBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for configDirectory.
    • hasDataDirectory

      public boolean hasDataDirectory()
       Directory where Yamcs data is stored.
       
      optional string dataDirectory = 9;
      Specified by:
      hasDataDirectory in interface SystemInfoOrBuilder
      Returns:
      Whether the dataDirectory field is set.
    • getDataDirectory

      public String getDataDirectory()
       Directory where Yamcs data is stored.
       
      optional string dataDirectory = 9;
      Specified by:
      getDataDirectory in interface SystemInfoOrBuilder
      Returns:
      The dataDirectory.
    • getDataDirectoryBytes

      public com.google.protobuf.ByteString getDataDirectoryBytes()
       Directory where Yamcs data is stored.
       
      optional string dataDirectory = 9;
      Specified by:
      getDataDirectoryBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for dataDirectory.
    • hasCacheDirectory

      public boolean hasCacheDirectory()
       Directory where Yamcs may cache files.
       
      optional string cacheDirectory = 10;
      Specified by:
      hasCacheDirectory in interface SystemInfoOrBuilder
      Returns:
      Whether the cacheDirectory field is set.
    • getCacheDirectory

      public String getCacheDirectory()
       Directory where Yamcs may cache files.
       
      optional string cacheDirectory = 10;
      Specified by:
      getCacheDirectory in interface SystemInfoOrBuilder
      Returns:
      The cacheDirectory.
    • getCacheDirectoryBytes

      public com.google.protobuf.ByteString getCacheDirectoryBytes()
       Directory where Yamcs may cache files.
       
      optional string cacheDirectory = 10;
      Specified by:
      getCacheDirectoryBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for cacheDirectory.
    • hasOs

      public boolean hasOs()
       Operating system name and version.
       
      optional string os = 11;
      Specified by:
      hasOs in interface SystemInfoOrBuilder
      Returns:
      Whether the os field is set.
    • getOs

      public String getOs()
       Operating system name and version.
       
      optional string os = 11;
      Specified by:
      getOs in interface SystemInfoOrBuilder
      Returns:
      The os.
    • getOsBytes

      public com.google.protobuf.ByteString getOsBytes()
       Operating system name and version.
       
      optional string os = 11;
      Specified by:
      getOsBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for os.
    • hasArch

      public boolean hasArch()
       Operating system architecture.
       
      optional string arch = 12;
      Specified by:
      hasArch in interface SystemInfoOrBuilder
      Returns:
      Whether the arch field is set.
    • getArch

      public String getArch()
       Operating system architecture.
       
      optional string arch = 12;
      Specified by:
      getArch in interface SystemInfoOrBuilder
      Returns:
      The arch.
    • getArchBytes

      public com.google.protobuf.ByteString getArchBytes()
       Operating system architecture.
       
      optional string arch = 12;
      Specified by:
      getArchBytes in interface SystemInfoOrBuilder
      Returns:
      The bytes for arch.
    • hasAvailableProcessors

      public boolean hasAvailableProcessors()
       Number of processors available to Yamcs.
       
      optional int32 availableProcessors = 13;
      Specified by:
      hasAvailableProcessors in interface SystemInfoOrBuilder
      Returns:
      Whether the availableProcessors field is set.
    • getAvailableProcessors

      public int getAvailableProcessors()
       Number of processors available to Yamcs.
       
      optional int32 availableProcessors = 13;
      Specified by:
      getAvailableProcessors in interface SystemInfoOrBuilder
      Returns:
      The availableProcessors.
    • hasLoadAverage

      public boolean hasLoadAverage()
       System load average for the last minute.
       
      optional double loadAverage = 14;
      Specified by:
      hasLoadAverage in interface SystemInfoOrBuilder
      Returns:
      Whether the loadAverage field is set.
    • getLoadAverage

      public double getLoadAverage()
       System load average for the last minute.
       
      optional double loadAverage = 14;
      Specified by:
      getLoadAverage in interface SystemInfoOrBuilder
      Returns:
      The loadAverage.
    • hasHeapMemory

      public boolean hasHeapMemory()
       Amount of memory in bytes of the heap that is used for object allocation and that is committed for the JVM to use.
       
      optional int64 heapMemory = 15;
      Specified by:
      hasHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the heapMemory field is set.
    • getHeapMemory

      public long getHeapMemory()
       Amount of memory in bytes of the heap that is used for object allocation and that is committed for the JVM to use.
       
      optional int64 heapMemory = 15;
      Specified by:
      getHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The heapMemory.
    • hasUsedHeapMemory

      public boolean hasUsedHeapMemory()
       Amount of used heap memory in bytes.
       
      optional int64 usedHeapMemory = 16;
      Specified by:
      hasUsedHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the usedHeapMemory field is set.
    • getUsedHeapMemory

      public long getUsedHeapMemory()
       Amount of used heap memory in bytes.
       
      optional int64 usedHeapMemory = 16;
      Specified by:
      getUsedHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The usedHeapMemory.
    • hasMaxHeapMemory

      public boolean hasMaxHeapMemory()
       Maximum amount of heap memory in bytes that can be used for memory management.
       
      optional int64 maxHeapMemory = 17;
      Specified by:
      hasMaxHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the maxHeapMemory field is set.
    • getMaxHeapMemory

      public long getMaxHeapMemory()
       Maximum amount of heap memory in bytes that can be used for memory management.
       
      optional int64 maxHeapMemory = 17;
      Specified by:
      getMaxHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The maxHeapMemory.
    • hasNonHeapMemory

      public boolean hasNonHeapMemory()
       Amount of non-heap memory in bytes that is committed for the JVM to use.
       
      optional int64 nonHeapMemory = 18;
      Specified by:
      hasNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the nonHeapMemory field is set.
    • getNonHeapMemory

      public long getNonHeapMemory()
       Amount of non-heap memory in bytes that is committed for the JVM to use.
       
      optional int64 nonHeapMemory = 18;
      Specified by:
      getNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The nonHeapMemory.
    • hasUsedNonHeapMemory

      public boolean hasUsedNonHeapMemory()
       Amount of non-heap used memory in bytes.
       
      optional int64 usedNonHeapMemory = 19;
      Specified by:
      hasUsedNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the usedNonHeapMemory field is set.
    • getUsedNonHeapMemory

      public long getUsedNonHeapMemory()
       Amount of non-heap used memory in bytes.
       
      optional int64 usedNonHeapMemory = 19;
      Specified by:
      getUsedNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The usedNonHeapMemory.
    • hasMaxNonHeapMemory

      public boolean hasMaxNonHeapMemory()
       Maximum amount of non-heap memory in bytes that can be used for memory management.
       
      optional int64 maxNonHeapMemory = 20;
      Specified by:
      hasMaxNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      Whether the maxNonHeapMemory field is set.
    • getMaxNonHeapMemory

      public long getMaxNonHeapMemory()
       Maximum amount of non-heap memory in bytes that can be used for memory management.
       
      optional int64 maxNonHeapMemory = 20;
      Specified by:
      getMaxNonHeapMemory in interface SystemInfoOrBuilder
      Returns:
      The maxNonHeapMemory.
    • hasJvmThreadCount

      public boolean hasJvmThreadCount()
       Number of active threads.
       
      optional int64 jvmThreadCount = 21;
      Specified by:
      hasJvmThreadCount in interface SystemInfoOrBuilder
      Returns:
      Whether the jvmThreadCount field is set.
    • getJvmThreadCount

      public long getJvmThreadCount()
       Number of active threads.
       
      optional int64 jvmThreadCount = 21;
      Specified by:
      getJvmThreadCount in interface SystemInfoOrBuilder
      Returns:
      The jvmThreadCount.
    • getRootDirectoriesList

      public List<RootDirectory> getRootDirectoriesList()
       Root directories, each corresponding to a distinct file hierarchy.
       
      repeated .yamcs.protobuf.server.RootDirectory rootDirectories = 22;
      Specified by:
      getRootDirectoriesList in interface SystemInfoOrBuilder
    • getRootDirectoriesOrBuilderList

      public List<? extends RootDirectoryOrBuilder> getRootDirectoriesOrBuilderList()
       Root directories, each corresponding to a distinct file hierarchy.
       
      repeated .yamcs.protobuf.server.RootDirectory rootDirectories = 22;
      Specified by:
      getRootDirectoriesOrBuilderList in interface SystemInfoOrBuilder
    • getRootDirectoriesCount

      public int getRootDirectoriesCount()
       Root directories, each corresponding to a distinct file hierarchy.
       
      repeated .yamcs.protobuf.server.RootDirectory rootDirectories = 22;
      Specified by:
      getRootDirectoriesCount in interface SystemInfoOrBuilder
    • getRootDirectories

      public RootDirectory getRootDirectories(int index)
       Root directories, each corresponding to a distinct file hierarchy.
       
      repeated .yamcs.protobuf.server.RootDirectory rootDirectories = 22;
      Specified by:
      getRootDirectories in interface SystemInfoOrBuilder
    • getRootDirectoriesOrBuilder

      public RootDirectoryOrBuilder getRootDirectoriesOrBuilder(int index)
       Root directories, each corresponding to a distinct file hierarchy.
       
      repeated .yamcs.protobuf.server.RootDirectory rootDirectories = 22;
      Specified by:
      getRootDirectoriesOrBuilder in interface SystemInfoOrBuilder
    • hasProcess

      public boolean hasProcess()
       Information about the Yamcs process and any descendants.
       
      optional .yamcs.protobuf.server.ProcessInfo process = 23;
      Specified by:
      hasProcess in interface SystemInfoOrBuilder
      Returns:
      Whether the process field is set.
    • getProcess

      public ProcessInfo getProcess()
       Information about the Yamcs process and any descendants.
       
      optional .yamcs.protobuf.server.ProcessInfo process = 23;
      Specified by:
      getProcess in interface SystemInfoOrBuilder
      Returns:
      The process.
    • getProcessOrBuilder

      public ProcessInfoOrBuilder getProcessOrBuilder()
       Information about the Yamcs process and any descendants.
       
      optional .yamcs.protobuf.server.ProcessInfo process = 23;
      Specified by:
      getProcessOrBuilder in interface SystemInfoOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static SystemInfo parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static SystemInfo parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static SystemInfo parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static SystemInfo parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static SystemInfo parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static SystemInfo parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static SystemInfo parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public SystemInfo.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static SystemInfo.Builder newBuilder()
    • newBuilder

      public static SystemInfo.Builder newBuilder(SystemInfo prototype)
    • toBuilder

      public SystemInfo.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected SystemInfo.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static SystemInfo getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<SystemInfo> parser()
    • getParserForType

      public com.google.protobuf.Parser<SystemInfo> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public SystemInfo getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder