public enum MeteringMode extends Enum<MeteringMode>
| Enum Constant and Description |
|---|
REQUEST_UNITS |
RESERVED_CAPACITY |
UNSPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static MeteringMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeteringMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeteringMode UNSPECIFIED
public static final MeteringMode RESERVED_CAPACITY
public static final MeteringMode REQUEST_UNITS
public static MeteringMode[] values()
for (MeteringMode c : MeteringMode.values()) System.out.println(c);
public static MeteringMode 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 © 2025. All rights reserved.