/* * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.common; import static java.util.Objects.requireNonNull; import org.eclipse.jdt.annotation.NonNullByDefault; import org.eclipse.jdt.annotation.Nullable; /** * Enumeration of {@code error-severity} values, as defined by * RFC4741, section 4.3. */ @NonNullByDefault public enum ErrorSeverity { /** * An error preventing an operation from completing successfully. */ ERROR("error"), /** * A warning not affecting an operation's ability to complete successfully. */ WARNING("warning"); private final String elementBody; ErrorSeverity(final String elementBody) { this.elementBody = requireNonNull(elementBody); } /** * Return the XML element body of this object. * * @return element body of this object */ public String elementBody() { return elementBody; } public static @Nullable ErrorSeverity forElementBody(final String elementBody) { return switch (elementBody) { case "error" -> ERROR; case "warning" -> WARNING; default -> null; }; } }