public enum AttachmentDataStorageType extends Enum<AttachmentDataStorageType>
AttachmentDataDao
implementations.Enum Constant and Description |
---|
DATABASE |
FILE_SYSTEM |
Modifier and Type | Method and Description |
---|---|
com.atlassian.fugue.Maybe<AttachmentDataStorageType> |
fromConfigurationString(String configurationKey) |
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 nullpublic com.atlassian.fugue.Maybe<AttachmentDataStorageType> fromConfigurationString(String configurationKey)
Copyright © 2003–2015 Atlassian. All rights reserved.