001/* 002 * SPDX-FileCopyrightText: none 003 * SPDX-License-Identifier: CC0-1.0 004 */ 005 006package dev.metaschema.databind.model.annotations; 007 008/** 009 * Specifies the namespace qualification behavior for XML elements. 010 */ 011public enum XmlNsForm { 012 /** 013 * Elements are not namespace-qualified. 014 */ 015 UNQUALIFIED, 016 /** 017 * Elements are namespace-qualified. 018 */ 019 QUALIFIED, 020 /** 021 * The namespace form uses the default behavior. 022 */ 023 UNSET; 024}