Enum Class SystemInfoType

java.lang.Object
java.lang.Enum<SystemInfoType>
com.tenio.core.monitoring.define.SystemInfoType
All Implemented Interfaces:
Serializable, Comparable<SystemInfoType>, Constable

public enum SystemInfoType extends Enum<SystemInfoType>
All OS system and Java environment information flags.
  • Enum Constant Details

    • OS_NAME

      public static final SystemInfoType OS_NAME
      The OS name.
    • OS_ARCH

      public static final SystemInfoType OS_ARCH
      The OS architecture.
    • OS_VERSION

      public static final SystemInfoType OS_VERSION
      The OS version.
    • JAVA_VERSION

      public static final SystemInfoType JAVA_VERSION
      The Java version.
    • JAVA_VENDOR

      public static final SystemInfoType JAVA_VENDOR
      The Java vendor.
    • JAVA_VENDOR_URL

      public static final SystemInfoType JAVA_VENDOR_URL
      The Java vendor URL.
    • JAVA_VM_SPEC_VERSION

      public static final SystemInfoType JAVA_VM_SPEC_VERSION
      The Java Virtual Machine specification version.
    • JAVA_VM_VERSION

      public static final SystemInfoType JAVA_VM_VERSION
      The Java Virtual Machine version.
    • JAVA_VM_VENDOR

      public static final SystemInfoType JAVA_VM_VENDOR
      The Java Virtual Machine vendor.
    • JAVA_VM_NAME

      public static final SystemInfoType JAVA_VM_NAME
      The Java Virtual Machine name.
    • JAVA_IO_TMPDIR

      public static final SystemInfoType JAVA_IO_TMPDIR
      The Java IO temporary directory.
  • Method Details

    • values

      public static SystemInfoType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SystemInfoType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public final String getValue()
      Retrieves flag's name.
      Returns:
      the String flag's name
    • toString

      public String toString()
      Overrides:
      toString in class Enum<SystemInfoType>