Package com.kaltura.client.enums
Enum AmazonS3StorageProfileFilesPermissionLevel
- java.lang.Object
-
- java.lang.Enum<AmazonS3StorageProfileFilesPermissionLevel>
-
- com.kaltura.client.enums.AmazonS3StorageProfileFilesPermissionLevel
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<AmazonS3StorageProfileFilesPermissionLevel>
public enum AmazonS3StorageProfileFilesPermissionLevel extends Enum<AmazonS3StorageProfileFilesPermissionLevel> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACL_AUTHENTICATED_READACL_PRIVATEACL_PUBLIC_READACL_PUBLIC_READ_WRITE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AmazonS3StorageProfileFilesPermissionLevelget(String value)StringgetValue()voidsetValue(String value)static AmazonS3StorageProfileFilesPermissionLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static AmazonS3StorageProfileFilesPermissionLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACL_AUTHENTICATED_READ
public static final AmazonS3StorageProfileFilesPermissionLevel ACL_AUTHENTICATED_READ
-
ACL_PRIVATE
public static final AmazonS3StorageProfileFilesPermissionLevel ACL_PRIVATE
-
ACL_PUBLIC_READ
public static final AmazonS3StorageProfileFilesPermissionLevel ACL_PUBLIC_READ
-
ACL_PUBLIC_READ_WRITE
public static final AmazonS3StorageProfileFilesPermissionLevel ACL_PUBLIC_READ_WRITE
-
-
Method Detail
-
values
public static AmazonS3StorageProfileFilesPermissionLevel[] 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 (AmazonS3StorageProfileFilesPermissionLevel c : AmazonS3StorageProfileFilesPermissionLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AmazonS3StorageProfileFilesPermissionLevel 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
-
getValue
public String getValue()
- Specified by:
getValuein interfaceEnumAsString
-
setValue
public void setValue(String value)
-
get
public static AmazonS3StorageProfileFilesPermissionLevel get(String value)
-
-