|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<IMemStats.Props> org.jmythapi.protocol.response.IMemStats.Props
public static enum IMemStats.Props
The properties of an IMemStats
response.
MythTV Protocol Version Matrix | ||||
---|---|---|---|---|
Protocol | ||||
Name | Type | Range | 15 | -1 |
TOTAL_RAM_MB | Integer | [15,-1) | X | X |
FREE_RAM_MB | Integer | [15,-1) | X | X |
TOTAL_VM_MB | Integer | [15,-1) | X | X |
FREE_VM_MB | Integer | [15,-1) | X | X |
Enum Constant Summary | |
---|---|
FREE_RAM_MB
The free physical and swap memory in MB |
|
FREE_VM_MB
The free swap space in MB. |
|
TOTAL_RAM_MB
The available physical and swap memory in MB |
|
TOTAL_VM_MB
The available swap space in MB. |
Method Summary | |
---|---|
static IMemStats.Props |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IMemStats.Props[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IMemStats.Props TOTAL_RAM_MB
IMemStats.getTotalRamMB()
public static final IMemStats.Props FREE_RAM_MB
IMemStats.getFreeRamMB()
public static final IMemStats.Props TOTAL_VM_MB
IMemStats.getTotalVmMB()
public static final IMemStats.Props FREE_VM_MB
IMemStats.getFreeVmMB()
Method Detail |
---|
public static IMemStats.Props[] values()
for (IMemStats.Props c : IMemStats.Props.values()) System.out.println(c);
public static IMemStats.Props valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |