Class MemoryInfoRepresentation
- java.lang.Object
-
- org.keycloak.representations.info.MemoryInfoRepresentation
-
public class MemoryInfoRepresentation extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected long
free
protected String
freeFormated
protected long
freePercentage
protected long
total
protected String
totalFormated
protected long
used
protected String
usedFormated
-
Constructor Summary
Constructors Constructor Description MemoryInfoRepresentation()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MemoryInfoRepresentation
create()
long
getFree()
String
getFreeFormated()
long
getFreePercentage()
long
getTotal()
String
getTotalFormated()
long
getUsed()
String
getUsedFormated()
-
-
-
Method Detail
-
create
public static MemoryInfoRepresentation create()
-
getTotal
public long getTotal()
-
getTotalFormated
public String getTotalFormated()
-
getFree
public long getFree()
-
getFreeFormated
public String getFreeFormated()
-
getUsed
public long getUsed()
-
getUsedFormated
public String getUsedFormated()
-
getFreePercentage
public long getFreePercentage()
-
-