public enum AttachmentDataStorageType extends Enum<AttachmentDataStorageType>
AttachmentDataDao
implementations.Enum Constant and Description |
---|
DATABASE |
FILE_SYSTEM |
Modifier and Type | Method and Description |
---|---|
Optional<AttachmentDataStorageType> |
createFromConfigurationString(String configurationKey) |
com.atlassian.fugue.Maybe<AttachmentDataStorageType> |
fromConfigurationString(String configurationKey)
Deprecated.
since 7.0.1. Use
createFromConfigurationString(String) |
static AttachmentDataStorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttachmentDataStorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachmentDataStorageType FILE_SYSTEM
public static final AttachmentDataStorageType DATABASE
public static AttachmentDataStorageType[] values()
for (AttachmentDataStorageType c : AttachmentDataStorageType.values()) System.out.println(c);
public static AttachmentDataStorageType 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 null@Deprecated public com.atlassian.fugue.Maybe<AttachmentDataStorageType> fromConfigurationString(String configurationKey)
createFromConfigurationString(String)
public Optional<AttachmentDataStorageType> createFromConfigurationString(String configurationKey)
Copyright © 2003–2020 Atlassian. All rights reserved.