Enum-Klasse StatsType

java.lang.Object
java.lang.Enum<StatsType>
de.bytestore.hostinger.entity.StatsType
Alle implementierten Schnittstellen:
io.jmix.core.metamodel.datatype.EnumClass<String>, Serializable, Comparable<StatsType>, Constable

public enum StatsType extends Enum<StatsType> implements io.jmix.core.metamodel.datatype.EnumClass<String>
  • Enum-Konstanten - Details

    • SYSTEM_CPU_USAGE

      public static final StatsType SYSTEM_CPU_USAGE
    • SYSTEM_CPU_TEMPERATURE

      public static final StatsType SYSTEM_CPU_TEMPERATURE
    • SYSTEM_MEMORY_USAGE

      public static final StatsType SYSTEM_MEMORY_USAGE
    • SYSTEM_DISK_USAGE

      public static final StatsType SYSTEM_DISK_USAGE
    • SYSTEM_MEMORY

      public static final StatsType SYSTEM_MEMORY
    • SYSTEM_DISK

      public static final StatsType SYSTEM_DISK
    • SYSTEM_HEAP

      public static final StatsType SYSTEM_HEAP
    • SYSTEM_HEAP_USAGE

      public static final StatsType SYSTEM_HEAP_USAGE
    • SYSTEM_CPU_PERCENT

      public static final StatsType SYSTEM_CPU_PERCENT
    • SYSTEM_MEMORY_PERCENT

      public static final StatsType SYSTEM_MEMORY_PERCENT
    • SYSTEM_DISK_PERCENT

      public static final StatsType SYSTEM_DISK_PERCENT
    • SYSTEM_HEAP_PERCENT

      public static final StatsType SYSTEM_HEAP_PERCENT
    • SYSTEM_NETWORK_SEND

      public static final StatsType SYSTEM_NETWORK_SEND
    • SYSTEM_NETWORK_RECEIVE

      public static final StatsType SYSTEM_NETWORK_RECEIVE
  • Methodendetails

    • values

      public static StatsType[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static StatsType valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • fromId

      @Nullable public static StatsType fromId(String id)