com.azure.resourcemanager.eventhubs.models.SchemaCompatibility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-eventhubs Show documentation
Show all versions of azure-resourcemanager-eventhubs Show documentation
This package contains Microsoft Azure EventHubs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.eventhubs.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for SchemaCompatibility. */
public final class SchemaCompatibility extends ExpandableStringEnum {
/** Static value None for SchemaCompatibility. */
public static final SchemaCompatibility NONE = fromString("None");
/** Static value Backward for SchemaCompatibility. */
public static final SchemaCompatibility BACKWARD = fromString("Backward");
/** Static value Forward for SchemaCompatibility. */
public static final SchemaCompatibility FORWARD = fromString("Forward");
/**
* Creates or finds a SchemaCompatibility from its string representation.
*
* @param name a name to look for.
* @return the corresponding SchemaCompatibility.
*/
@JsonCreator
public static SchemaCompatibility fromString(String name) {
return fromString(name, SchemaCompatibility.class);
}
/** @return known SchemaCompatibility values. */
public static Collection values() {
return values(SchemaCompatibility.class);
}
}