1 /*
2 * SPDX-FileCopyrightText: none
3 * SPDX-License-Identifier: CC0-1.0
4 */
5
6 package dev.metaschema.core.metapath.item.atomic;
7
8 import dev.metaschema.core.metapath.item.IItem;
9
10 /**
11 * This marker interface identifies a valued {@link IItem} type that has an
12 * associated {@link IAnyAtomicItem} value.
13 */
14 public interface IAtomicValuedItem extends IItem {
15 // no additional methods
16 }