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