public enum StorageMetric extends Enum<StorageMetric>
| Enum Constant and Description |
|---|
TOTAL_DATA_IN |
TOTAL_LOGICAL_USAGE |
TOTAL_PHYSICAL_DATA_USAGE |
TOTAL_PHYSICAL_USAGE |
| Modifier and Type | Method and Description |
|---|---|
static StorageMetric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageMetric TOTAL_LOGICAL_USAGE
public static final StorageMetric TOTAL_PHYSICAL_USAGE
public static final StorageMetric TOTAL_PHYSICAL_DATA_USAGE
public static final StorageMetric TOTAL_DATA_IN
public static StorageMetric[] values()
for (StorageMetric c : StorageMetric.values()) System.out.println(c);
public static StorageMetric valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 iland Internet Solutions, Corp. All rights reserved.