Package com.exoscale.sdk.model
Enum JsonSchemaRedis.AclChannelsDefaultEnum
- java.lang.Object
-
- java.lang.Enum<JsonSchemaRedis.AclChannelsDefaultEnum>
-
- com.exoscale.sdk.model.JsonSchemaRedis.AclChannelsDefaultEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<JsonSchemaRedis.AclChannelsDefaultEnum>
- Enclosing class:
- JsonSchemaRedis
public static enum JsonSchemaRedis.AclChannelsDefaultEnum extends Enum<JsonSchemaRedis.AclChannelsDefaultEnum>
Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Redis configuration acl-pubsub-default.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLCHANNELS
RESETCHANNELS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonSchemaRedis.AclChannelsDefaultEnum
fromValue(String value)
String
getValue()
String
toString()
static JsonSchemaRedis.AclChannelsDefaultEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static JsonSchemaRedis.AclChannelsDefaultEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLCHANNELS
public static final JsonSchemaRedis.AclChannelsDefaultEnum ALLCHANNELS
-
RESETCHANNELS
public static final JsonSchemaRedis.AclChannelsDefaultEnum RESETCHANNELS
-
-
Method Detail
-
values
public static JsonSchemaRedis.AclChannelsDefaultEnum[] 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 (JsonSchemaRedis.AclChannelsDefaultEnum c : JsonSchemaRedis.AclChannelsDefaultEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JsonSchemaRedis.AclChannelsDefaultEnum 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()
-
toString
public String toString()
- Overrides:
toString
in classEnum<JsonSchemaRedis.AclChannelsDefaultEnum>
-
fromValue
public static JsonSchemaRedis.AclChannelsDefaultEnum fromValue(String value)
-
-