public enum FileExpirationOffset extends Enum<FileExpirationOffset>
| Enum Constant and Description |
|---|
CREATION_TIME
Files's expiration time should be set relative to the file creation time.
|
NOW
Files's expiration time should be set relative to the current time.
|
| Modifier and Type | Method and Description |
|---|---|
static FileExpirationOffset |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileExpirationOffset[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileExpirationOffset CREATION_TIME
public static final FileExpirationOffset NOW
public static FileExpirationOffset[] values()
public static FileExpirationOffset 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 nullVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.