Enum SchemaRegistryConfigurationProperties.AvroCompatibilityLevel
- java.lang.Object
-
- java.lang.Enum<SchemaRegistryConfigurationProperties.AvroCompatibilityLevel>
-
- com.playtika.test.kafka.properties.SchemaRegistryConfigurationProperties.AvroCompatibilityLevel
-
- All Implemented Interfaces:
Serializable,Comparable<SchemaRegistryConfigurationProperties.AvroCompatibilityLevel>
- Enclosing class:
- SchemaRegistryConfigurationProperties
public static enum SchemaRegistryConfigurationProperties.AvroCompatibilityLevel extends Enum<SchemaRegistryConfigurationProperties.AvroCompatibilityLevel>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKWARDBACKWARD_TRANSITIVEFORWARDFORWARD_TRANSITIVEFULLFULL_TRANSITIVENONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaRegistryConfigurationProperties.AvroCompatibilityLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static SchemaRegistryConfigurationProperties.AvroCompatibilityLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel NONE
-
BACKWARD
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel BACKWARD
-
BACKWARD_TRANSITIVE
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel BACKWARD_TRANSITIVE
-
FORWARD
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel FORWARD
-
FORWARD_TRANSITIVE
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel FORWARD_TRANSITIVE
-
FULL
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel FULL
-
FULL_TRANSITIVE
public static final SchemaRegistryConfigurationProperties.AvroCompatibilityLevel FULL_TRANSITIVE
-
-
Method Detail
-
values
public static SchemaRegistryConfigurationProperties.AvroCompatibilityLevel[] 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 (SchemaRegistryConfigurationProperties.AvroCompatibilityLevel c : SchemaRegistryConfigurationProperties.AvroCompatibilityLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchemaRegistryConfigurationProperties.AvroCompatibilityLevel 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
-
-