@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum KafkaSecurityProtocol extends Enum<KafkaSecurityProtocol>
| Enum Constant and Description | 
|---|
| Plaintext | 
| SaslSsl | 
| SslAuthentication | 
| SslEncryption | 
| Modifier and Type | Method and Description | 
|---|---|
| static KafkaSecurityProtocol | fromValue(String value)Use this in place of valueOf. | 
| String | toString() | 
| static KafkaSecurityProtocol | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static KafkaSecurityProtocol[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KafkaSecurityProtocol Plaintext
public static final KafkaSecurityProtocol SslAuthentication
public static final KafkaSecurityProtocol SslEncryption
public static final KafkaSecurityProtocol SaslSsl
public static KafkaSecurityProtocol[] values()
for (KafkaSecurityProtocol c : KafkaSecurityProtocol.values()) System.out.println(c);
public static KafkaSecurityProtocol 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 toString()
toString in class Enum<KafkaSecurityProtocol>public static KafkaSecurityProtocol fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.