public enum ArchivalState extends Enum<ArchivalState>
Enum Constant and Description |
---|
ARCHIVAL
Archival requested on the current file, but other copies of the same file are in the live state in multiple
projects with the same billTo entity.
|
ARCHIVED
The file is in archival storage, such as AWS S3 Glacier or Azure Blob ARCHIVE.
|
LIVE
The file is in standard storage, such as AWS S3 or Azure Blob.
|
UNARCHIVING
Unarchival requested on the current file.
|
Modifier and Type | Method and Description |
---|---|
static ArchivalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchivalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchivalState ARCHIVED
public static final ArchivalState LIVE
public static final ArchivalState ARCHIVAL
public static final ArchivalState UNARCHIVING
public static ArchivalState[] values()
for (ArchivalState c : ArchivalState.values()) System.out.println(c);
public static ArchivalState 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. All Rights Reserved.