public enum StorageProvider extends Enum<StorageProvider>
Enum Constant and Description |
---|
FILESYSTEM
File system storage offer
|
HASHFILESYSTEM
File system storage offer with a hashed directory structure
|
SWIFT_AUTH_V1
Swift storage offer (ceph or openStack)
authent v1
|
SWIFT_AUTH_V2
Swift storage offer
authent v2
|
SWIFT_AUTH_V3
Swift storage offer
authent v3
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static StorageProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageProvider FILESYSTEM
public static final StorageProvider SWIFT_AUTH_V1
public static final StorageProvider SWIFT_AUTH_V2
public static final StorageProvider SWIFT_AUTH_V3
public static final StorageProvider HASHFILESYSTEM
public static StorageProvider[] values()
for (StorageProvider c : StorageProvider.values()) System.out.println(c);
public static StorageProvider 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 String getValue()
Copyright © 2018 Vitam. All rights reserved.