Package io.trino.plugin.hive.s3
Enum TrinoS3SignerType
- java.lang.Object
-
- java.lang.Enum<TrinoS3SignerType>
-
- io.trino.plugin.hive.s3.TrinoS3SignerType
-
- All Implemented Interfaces:
Serializable,Comparable<TrinoS3SignerType>
public enum TrinoS3SignerType extends Enum<TrinoS3SignerType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AWS3SignerTypeAWS4SignerTypeAWSS3V4SignerTypeCloudFrontSignerTypeQueryStringSignerTypeS3SignerType
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TrinoS3SignerTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TrinoS3SignerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S3SignerType
public static final TrinoS3SignerType S3SignerType
-
AWS3SignerType
public static final TrinoS3SignerType AWS3SignerType
-
AWS4SignerType
public static final TrinoS3SignerType AWS4SignerType
-
AWSS3V4SignerType
public static final TrinoS3SignerType AWSS3V4SignerType
-
CloudFrontSignerType
public static final TrinoS3SignerType CloudFrontSignerType
-
QueryStringSignerType
public static final TrinoS3SignerType QueryStringSignerType
-
-
Method Detail
-
values
public static TrinoS3SignerType[] 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 (TrinoS3SignerType c : TrinoS3SignerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TrinoS3SignerType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-