public enum CloudStorage extends java.lang.Enum<CloudStorage>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAzureObjectUrl(java.lang.String accountName,
java.lang.String containerName,
java.lang.String commonPrefix) |
java.lang.String |
getEndpoint(java.lang.String... replaceParams) |
java.lang.String |
getS3ObjectUrl(java.lang.String bucketName,
java.lang.String commonPrefix,
java.lang.String region) |
static CloudStorage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudStorage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudStorage MINIO
public static final CloudStorage AWS
public static final CloudStorage GCP
public static final CloudStorage AZURE
public static final CloudStorage ALI
public static final CloudStorage TC
public static CloudStorage[] values()
for (CloudStorage c : CloudStorage.values()) System.out.println(c);
public static CloudStorage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getEndpoint(java.lang.String... replaceParams)
public java.lang.String getS3ObjectUrl(java.lang.String bucketName, java.lang.String commonPrefix, java.lang.String region)
public java.lang.String getAzureObjectUrl(java.lang.String accountName, java.lang.String containerName, java.lang.String commonPrefix)