001package io.avaje.json;
002
003/**
004 * Marker interface for IOAdapter specific property names.
005 * <p>
006 * This can provide support for use of names by index position where
007 * the names have already been escaped and encoded.
008 *
009 * @see JsonWriter#allNames(PropertyNames)
010 * @see JsonWriter#name(int)
011 */
012public interface PropertyNames {
013}