public static enum AvroSchemaCompatibility.SchemaCompatibilityType extends Enum<AvroSchemaCompatibility.SchemaCompatibilityType>
| Enum Constant and Description |
|---|
COMPATIBLE |
INCOMPATIBLE |
RECURSION_IN_PROGRESS
Used internally to tag a reader/writer schema pair and prevent recursion.
|
| Modifier and Type | Method and Description |
|---|---|
static AvroSchemaCompatibility.SchemaCompatibilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AvroSchemaCompatibility.SchemaCompatibilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AvroSchemaCompatibility.SchemaCompatibilityType COMPATIBLE
public static final AvroSchemaCompatibility.SchemaCompatibilityType INCOMPATIBLE
public static final AvroSchemaCompatibility.SchemaCompatibilityType RECURSION_IN_PROGRESS
public static AvroSchemaCompatibility.SchemaCompatibilityType[] values()
for (AvroSchemaCompatibility.SchemaCompatibilityType c : AvroSchemaCompatibility.SchemaCompatibilityType.values()) System.out.println(c);
public static AvroSchemaCompatibility.SchemaCompatibilityType 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 nullCopyright © 2024 The Apache Software Foundation. All rights reserved.