public static enum SnapshotInfo.StorageBytesStatus extends Enum<SnapshotInfo.StorageBytesStatus>
SnapshotInfo.getStorageBytes()
is in a stable state or it is
being adjusted as a result of shared storage reallocation.Enum Constant and Description |
---|
UP_TO_DATE
Indicates that the size of the snapshot is up-to-date.
|
UPDATING
Indicates that the size of the snapshot is being updated.
|
Modifier and Type | Method and Description |
---|---|
static SnapshotInfo.StorageBytesStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotInfo.StorageBytesStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnapshotInfo.StorageBytesStatus UPDATING
public static final SnapshotInfo.StorageBytesStatus UP_TO_DATE
public static SnapshotInfo.StorageBytesStatus[] values()
for (SnapshotInfo.StorageBytesStatus c : SnapshotInfo.StorageBytesStatus.values()) System.out.println(c);
public static SnapshotInfo.StorageBytesStatus 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 © 2019 Google LLC. All rights reserved.