Enum DefaultMediaStorageConfigService.DefaultSettingKeys
- java.lang.Object
-
- java.lang.Enum<DefaultMediaStorageConfigService.DefaultSettingKeys>
-
- de.hybris.platform.media.storage.impl.DefaultMediaStorageConfigService.DefaultSettingKeys
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DefaultMediaStorageConfigService.DefaultSettingKeys>
- Enclosing class:
- DefaultMediaStorageConfigService
public static enum DefaultMediaStorageConfigService.DefaultSettingKeys extends java.lang.Enum<DefaultMediaStorageConfigService.DefaultSettingKeys>
Keeps all default media configuration subKeys.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HASHING_DEPTH_KEYLOCAL_CACHE_KEYLOCAL_CACHE_ROOT_FOLDER_KEYLOCATION_HASHING_SALT_KEYMEDIA_FOLDER_NAME_VALIDATION_KEYSECURED_KEYSTORAGE_STRATEGY_KEYURL_STRATEGY_KEY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static booleancontains(java.lang.String key)java.lang.StringgetKey()static DefaultMediaStorageConfigService.DefaultSettingKeysvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DefaultMediaStorageConfigService.DefaultSettingKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STORAGE_STRATEGY_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys STORAGE_STRATEGY_KEY
-
URL_STRATEGY_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys URL_STRATEGY_KEY
-
LOCAL_CACHE_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys LOCAL_CACHE_KEY
-
LOCAL_CACHE_ROOT_FOLDER_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys LOCAL_CACHE_ROOT_FOLDER_KEY
-
HASHING_DEPTH_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys HASHING_DEPTH_KEY
-
LOCATION_HASHING_SALT_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys LOCATION_HASHING_SALT_KEY
-
SECURED_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys SECURED_KEY
-
MEDIA_FOLDER_NAME_VALIDATION_KEY
public static final DefaultMediaStorageConfigService.DefaultSettingKeys MEDIA_FOLDER_NAME_VALIDATION_KEY
-
-
Method Detail
-
values
public static DefaultMediaStorageConfigService.DefaultSettingKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DefaultMediaStorageConfigService.DefaultSettingKeys c : DefaultMediaStorageConfigService.DefaultSettingKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultMediaStorageConfigService.DefaultSettingKeys valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getKey
public java.lang.String getKey()
-
contains
public static boolean contains(java.lang.String key)
-
-