- java.lang.Object
-
- java.lang.Enum<ResourceAccuracy>
-
- jdk.management.resource.ResourceAccuracy
-
- All Implemented Interfaces:
Serializable
,Comparable<ResourceAccuracy>
public enum ResourceAccuracy extends Enum<ResourceAccuracy>
ResourceAccuracy reflects the accuracy of an amount being requested though a ResourceMeter. For most tangible resources the value isHIGHEST
. For theHEAP_RETAINED
meter, the enumeration reflects the accuracy based on the current knowledge or lack thereof about the contents of the heap.- Since:
- 8u40
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ResourceAccuracy
improve()
Returns the next improved ResourceAccuracy.static ResourceAccuracy
valueOf(String name)
Returns the enum constant of this type with the specified name.static ResourceAccuracy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final ResourceAccuracy LOW
The ResourceAccuracy is low.
-
MEDIUM
public static final ResourceAccuracy MEDIUM
The ResourceAccuracy is medium.
-
HIGH
public static final ResourceAccuracy HIGH
The ResourceAccuracy is high.
-
HIGHEST
public static final ResourceAccuracy HIGHEST
The ResourceAccuracy is highest.
-
-
Method Detail
-
values
public static ResourceAccuracy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ResourceAccuracy c : ResourceAccuracy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceAccuracy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
improve
public ResourceAccuracy improve()
Returns the next improved ResourceAccuracy. If the accuracy cannot be improved, thenHIGHEST
is returned.- Returns:
- the next improved ResourceAccuracy
-
-