Package io.strimzi.api.kafka.model
Enum TlsSidecarLogLevel
- java.lang.Object
-
- java.lang.Enum<TlsSidecarLogLevel>
-
- io.strimzi.api.kafka.model.TlsSidecarLogLevel
-
- All Implemented Interfaces:
Serializable,Comparable<TlsSidecarLogLevel>
public enum TlsSidecarLogLevel extends Enum<TlsSidecarLogLevel>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TlsSidecarLogLevelforValue(String value)StringtoValue()static TlsSidecarLogLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static TlsSidecarLogLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMERG
public static final TlsSidecarLogLevel EMERG
-
ALERT
public static final TlsSidecarLogLevel ALERT
-
CRIT
public static final TlsSidecarLogLevel CRIT
-
ERR
public static final TlsSidecarLogLevel ERR
-
WARNING
public static final TlsSidecarLogLevel WARNING
-
NOTICE
public static final TlsSidecarLogLevel NOTICE
-
INFO
public static final TlsSidecarLogLevel INFO
-
DEBUG
public static final TlsSidecarLogLevel DEBUG
-
-
Method Detail
-
values
public static TlsSidecarLogLevel[] 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 (TlsSidecarLogLevel c : TlsSidecarLogLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TlsSidecarLogLevel 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
-
forValue
public static TlsSidecarLogLevel forValue(String value)
-
toValue
public String toValue()
-
-